donaldp 02/03/26 03:45:52
Modified: . build.xml
Log:
Make jdepend report work.
Revision Changes Path
1.122 +8 -2 jakarta-avalon-excalibur/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon-excalibur/build.xml,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- build.xml 26 Mar 2002 09:32:49 -0000 1.121
+++ build.xml 26 Mar 2002 11:45:51 -0000 1.122
@@ -57,12 +57,18 @@
<pathelement location="zip/src/test"/>
</path>
+ <!-- Classpath for product -->
+ <path id="jdepend.class.path">
+ <pathelement path="${java.class.path}"/>
+ <pathelement location="${checkstyle.jar}"/>
+ </path>
+
<!-- this invocation of jdepend requires the CVS version of ant for
the xml format -->
<!-- thats why you are required to define do.jdepend property to
generate the report -->
<jdepend outputfile="${build.dir}/jdepend-results.xml" format="xml"
fork="yes">
- <classpath refid="project.class.path"/>
+ <classpath refid="jdepend.class.path"/>
<sourcespath>
- <pathelement location="src/java" />
+ <path refid="java.src" />
</sourcespath>
</jdepend>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>