[jboss-cvs] jboss-seam/seam-gen/build-scripts ...
Gavin King
gavin.king at jboss.com
Wed Nov 8 22:46:17 EST 2006
User: gavin
Date: 06/11/08 22:46:17
Modified: seam-gen/build-scripts build.xml
Log:
minor
Revision Changes Path
1.9 +11 -6 jboss-seam/seam-gen/build-scripts/build.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/seam-gen/build-scripts/build.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -b -r1.8 -r1.9
--- build.xml 8 Nov 2006 01:48:43 -0000 1.8
+++ build.xml 9 Nov 2006 03:46:17 -0000 1.9
@@ -38,8 +38,9 @@
<mkdir dir="${dist.dir}" />
</target>
- <target name="compile" depends="init" description="Compile the Java source code" unless="${eclipse.running}">
-
+ <target name="compile" depends="init"
+ description="Compile the Java source code"
+ unless="eclipse.running">
<javac classpathref="build.classpath"
destdir="${jar.dir}"
debug="${javac.debug}"
@@ -49,7 +50,8 @@
</javac>
</target>
- <target name="jar" depends="compile" description="Build the distribution .jar file">
+ <target name="jar" depends="compile"
+ description="Build the distribution .jar file">
<copy todir="${jar.dir}">
<fileset dir="${basedir}/resources">
<include name="seam.properties" />
@@ -63,7 +65,8 @@
</copy>
</target>
- <target name="war" depends="compile" description="Build the distribution .war file">
+ <target name="war" depends="compile"
+ description="Build the distribution .war file">
<copy todir="${war.dir}">
<fileset dir="${basedir}/view" />
</copy>
@@ -110,7 +113,8 @@
</copy>
</target>
- <target name="archive" depends="jar,war,ear" description="Package the archives">
+ <target name="archive" depends="jar,war,ear"
+ description="Package the archives">
<jar jarfile="${dist.dir}/${project.name}.jar" basedir="${jar.dir}"/>
<jar jarfile="${dist.dir}/${project.name}.war" basedir="${war.dir}"/>
<jar jarfile="${dist.dir}/${project.name}.ear">
@@ -131,7 +135,8 @@
</copy>
</target>
- <target name="explode" depends="jar,war,ear,datasource" description="Deploy the exploded archive">
+ <target name="explode" depends="jar,war,ear,datasource"
+ description="Deploy the exploded archive">
<fail unless="jboss.home">jboss.home not set</fail>
<mkdir dir="${jar.deploy.dir}"/>
More information about the jboss-cvs-commits
mailing list