[Nmrshiftdb-devel] CVS: nmrshiftdb build.xml,1.1.1.1,1.2
Brought to you by:
steinbeck
|
From: Stefan K. <sh...@us...> - 2002-02-13 11:22:15
|
Update of /cvsroot/nmrshiftdb/nmrshiftdb
In directory usw-pr-cvs1:/tmp/cvs-serv12217
Modified Files:
build.xml
Log Message:
Edited build.xml for including jetspeed lib directory into classpath
Index: build.xml
===================================================================
RCS file: /cvsroot/nmrshiftdb/nmrshiftdb/build.xml,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** build.xml 13 Feb 2002 10:23:07 -0000 1.1.1.1
--- build.xml 13 Feb 2002 11:22:10 -0000 1.2
***************
*** 6,10 ****
<property name="dist" value="dist" />
! <property name="lib" value="jar" />
<property name="bin" value="bin" />
--- 6,10 ----
<property name="dist" value="dist" />
! <property name="lib" value="lib" />
<property name="bin" value="bin" />
***************
*** 15,19 ****
<path id="project.class.path">
<pathelement location="." />
! <fileset dir="./jar">
<include name="*.jar" />
</fileset>
--- 15,22 ----
<path id="project.class.path">
<pathelement location="." />
! <fileset dir="${lib}">
! <include name="*.jar" />
! </fileset>
! <fileset dir="${jetspeed}/WEB-INF/lib">
<include name="*.jar" />
</fileset>
***************
*** 69,72 ****
--- 72,76 ----
</target>
</project>
+
|