| Author |
echo classpath in build
|
Sahina Celin
Greenhorn
Joined: Aug 25, 2004
Posts: 23
|
|
hi , a small doubt can anybody give me how can i print and see my classpath in build.xml? here is my build.xml <project name="test" default="all" basedir="./../"> <property name="src" value="src" /> <property name="build" value="build" /> <property name="dist" value="dist" /> <property name="classpath" value="${classpath}:${build}" /> <property name="lib" value="../lib:../../lib" /> <path id="ext.classpath"> <pathelement path="${classpath}"/> <pathelement location="${build}"/> </path> <target name="all" depends="compile" description="Compiles"> <echo> Build Successful </echo> </target> <target name="compile" depends="prepare" description="Compiles classes."> <javac srcdir="${src}" destdir="${build}" debug="${debug}" extdirs="${lib}" deprecation="${deprecation}"> <classpath refid="ext.classpath" /> </javac> </target> </project> here before compiling i wanted to see the classpath and the files in that classpath. how to do that with <echo> command thanx
|
 |
Lasse Koskela
author
Sheriff
Joined: Jan 23, 2002
Posts: 11962
|
|
Here's a sample:
|
Author of Test Driven (2007) and Effective Unit Testing (2013) [Blog] [HowToAskQuestionsOnJavaRanch]
|
 |
 |
|
|
subject: echo classpath in build
|
|
|