In spite of reading a book on Ant, I'm still having significant
problems in understanding the pieces, particularly frustrating given
what else I've done as a programmer (not meant as a boast, but if you
can code a CMP EJB,a scripting language shouldn't be hard).  My team ha
a big Ant build script.  I added a task that is supposed to run from a
basedir, apu-reg, and use the test.class file in
Basedir/build/test/classes/edu/apu/directory/test.class
And when running be able to refer to classes in
basedir/build/classes/edu/apu/directory/*.class
as well as
basedir/build/classes/edu/apu/registration/*.class

I already have a compile task for the Test.java, written by someone
else.
I copied it and modified it to write this:
        <echo message="Running Test ${class} ${args}"/>
                <java fork="true" dir="${build.dir}"/test/classes
classname="${class}">
                        <arg line="${args}"/>
                        <classpath>
                                <pathelement
path="${build.dir}/test/classes"/>
                        <pathelement path="${build.dir}/classes"/>
                                <fileset dir="${lib.dir}">
                                        <include name="*.jar"/>
                                </fileset>
                        </classpath>
                </java>
        </target>

When I run ant test-run, I get an error for this task:

Buildfile: build.xml

BUILD FAILED
C:\cvsfolder\javalib\apu-reg\build.xml:207: Element type "java" must be
followed
 by either attribute specifications, ">" or "/>".

Total time: 0 seconds


So what am I missing?  I could sure use something to read that gives a
detailed explanation of pathelements and filesets.  The book I have is
not nearly detailed enough for my purposes.  I have no idea if I've got
this specified correctly.  Thanks.

Ken  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to