You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <project name="classloader-test" default="main" basedir=".">
-
- <target name="init">
-
- <path id="myJars" >
- <!-- both ant-junit.jar and junit.jar must be loaded from the same path -->
- <pathelement path="${ant.home}/lib/ant-junit.jar" />
- <pathelement path="${junit.jar}" />
- </path>
-
- <classloader classpathRef="myJars"
- reverse="true" >
-
- </classloader>
- <junit />
-
- </target>
-
- <target name="main" depends="init">
- <echo message="Found JUNIT" />
- </target>
-
- </project>
|