From: <me...@us...> - 2002-10-01 05:12:29
|
Update of /cvsroot/cayenne/cayenne In directory usw-pr-cvs1:/tmp/cvs-serv26389 Modified Files: build-tests.xml build.xml Added Files: build-tutorials.xml Log Message: relocated tutorials to a subproject (old tutorials are still around but will be deleted soon) --- NEW FILE: build-tutorials.xml --- <?xml version="1.0"?> <!-- =============================================== --> <!-- Tutorials buildfile. --> <!-- Tutorials normally do not follow the "standard" --> <!-- Cayenne subproject layout, therefore they have --> <!-- their own build.xml file called from here. --> <!-- =============================================== --> <project name="cayenne-tutorials" default="compile"> <target name="compile"> <ant antfile="src/tutorials/cayenne-cmd-app/build.xml" target="compile"/> <ant antfile="src/tutorials/cayenne-web-app/build.xml" target="compile"/> </target> <target name="dist-src"> <ant antfile="src/tutorials/cayenne-cmd-app/build.xml" target="dist-src"/> <ant antfile="src/tutorials/cayenne-web-app/build.xml" target="dist-src"/> </target> <target name="dist-bin"> <ant antfile="src/tutorials/cayenne-cmd-app/build.xml" target="dist-bin"/> <ant antfile="src/tutorials/cayenne-web-app/build.xml" target="dist-bin"/> </target> </project> Index: build-tests.xml =================================================================== RCS file: /cvsroot/cayenne/cayenne/build-tests.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- build-tests.xml 1 Oct 2002 03:53:39 -0000 1.3 +++ build-tests.xml 1 Oct 2002 05:12:26 -0000 1.4 @@ -41,7 +41,7 @@ <!-- ========================================== --> - <!-- Build "fat" JAR file with dependencies. --> + <!-- Builds tests JAR file. --> <!-- ========================================== --> <target name="jar" depends="compile"> <jar jarfile="${dist}/lib/cayenne-tests.jar" manifest="src/tests/MANIFEST.MF"> Index: build.xml =================================================================== RCS file: /cvsroot/cayenne/cayenne/build.xml,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- build.xml 26 Sep 2002 04:10:48 -0000 1.39 +++ build.xml 1 Oct 2002 05:12:26 -0000 1.40 @@ -92,6 +92,7 @@ <ant antfile="build-cayenne.xml" target="dist-bin"/> <ant antfile="build-tests.xml" target="dist-bin"/> <ant antfile="build-performance.xml" target="dist-bin"/> + <ant antfile="build-tutorials.xml" target="dist-bin"/> </target> <!-- ========================================== --> @@ -101,6 +102,7 @@ <ant antfile="build-cayenne.xml" target="compile"/> <ant antfile="build-tests.xml" target="compile"/> <ant antfile="build-performance.xml" target="compile"/> + <ant antfile="build-tutorials.xml" target="compile"/> </target> |