http://nagoya.apache.org/bugzilla/show_bug.cgi?id=675
*** shadow/675 Thu Feb 22 07:16:21 2001 --- shadow/675.tmp.16417 Thu Mar 15 05:14:40 2001 *************** *** 2,11 **** | Using the Javac task doesn't seem to accept <include> tags | +----------------------------------------------------------------------------+ | Bug #: 675 Product: Ant | ! | Status: NEW Version: 1.2 | ! | Resolution: Platform: PC | | Severity: Normal OS/Version: Windows NT/2K | ! | Priority: Component: Core tasks | +----------------------------------------------------------------------------+ | Assigned To: [EMAIL PROTECTED] | | Reported By: [EMAIL PROTECTED] | --- 2,11 ---- | Using the Javac task doesn't seem to accept <include> tags | +----------------------------------------------------------------------------+ | Bug #: 675 Product: Ant | ! | Status: RESOLVED Version: 1.2 | ! | Resolution: INVALID Platform: PC | | Severity: Normal OS/Version: Windows NT/2K | ! | Priority: High Component: Core tasks | +----------------------------------------------------------------------------+ | Assigned To: [EMAIL PROTECTED] | | Reported By: [EMAIL PROTECTED] | *************** *** 102,105 **** BUILD SUCCESSFUL Total time: 0 seconds ! D:\> --- 102,117 ---- BUILD SUCCESSFUL Total time: 0 seconds ! D:\> ! ! ------- Additional Comments From [EMAIL PROTECTED] 2001-03-15 05:14 ------- ! The problem is, that you are using absolute paths in your patterns while Ant ! expects them to be relative to srcdir, so instead of ! ! <include name="${src}/dev/j2me/share/jade/core/Agent.java" /> ! ! you must use ! ! <include name="share/jade/core/Agent.java" /> ! ! as srcdir is ${src}/dev/j2me/ in this case.