[jboss-cvs] JBossAS SVN: r107065 - in projects/jboss-jca/trunk: codegenerator and 7 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jul 23 13:55:13 EDT 2010


Author: jesper.pedersen
Date: 2010-07-23 13:55:12 -0400 (Fri, 23 Jul 2010)
New Revision: 107065

Modified:
   projects/jboss-jca/trunk/api/build.xml
   projects/jboss-jca/trunk/codegenerator/build.xml
   projects/jboss-jca/trunk/common/build.xml
   projects/jboss-jca/trunk/core/build.xml
   projects/jboss-jca/trunk/deployers/build.xml
   projects/jboss-jca/trunk/embedded/build.xml
   projects/jboss-jca/trunk/sjc/build.xml
   projects/jboss-jca/trunk/validator/build.xml
   projects/jboss-jca/trunk/web/build.xml
Log:
Additional options for <jar>

Modified: projects/jboss-jca/trunk/api/build.xml
===================================================================
--- projects/jboss-jca/trunk/api/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/api/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -49,6 +49,10 @@
   <target name="jars" depends="compile">
     <jar destfile="${target.dir}/${name}-spec-api.jar"
          basedir="${build.api.dir}"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          excludes="**/*.java">
       <manifest>
         <attribute name="Implementation-Title" value="The Java EE Connector Architecture 1.6 API"/>

Modified: projects/jboss-jca/trunk/codegenerator/build.xml
===================================================================
--- projects/jboss-jca/trunk/codegenerator/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/codegenerator/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -65,7 +65,11 @@
     </copy>
 
     <jar destfile="${target.dir}/${name}-codegenerator.jar"
-         basedir="${build.codegenerator.dir}/jars/codegenerator">
+         basedir="${build.codegenerator.dir}/jars/codegenerator"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Common"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>

Modified: projects/jboss-jca/trunk/common/build.xml
===================================================================
--- projects/jboss-jca/trunk/common/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/common/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -48,7 +48,11 @@
        ================================= -->
   <target name="jars" depends="compile">
     <jar destfile="${target.dir}/${name}-common.jar"
-         basedir="${build.common.dir}">
+         basedir="${build.common.dir}"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9">
       <manifest>
 	<attribute name="Implementation-Title" value="IronJacamar Common"/>
 	<attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>

Modified: projects/jboss-jca/trunk/core/build.xml
===================================================================
--- projects/jboss-jca/trunk/core/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/core/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -51,6 +51,10 @@
   <target name="jars" depends="compile">
     <jar destfile="${target.dir}/${name}-core-api.jar"
          basedir="${build.core.dir}/impl"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          includes="**/core/api/**">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Core API"/>
@@ -62,6 +66,10 @@
 
     <jar destfile="${target.dir}/${name}-core-spi.jar"
          basedir="${build.core.dir}/impl"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          includes="**/core/spi/**">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Core SPI"/>
@@ -73,6 +81,10 @@
 
     <jar destfile="${target.dir}/${name}-core-impl.jar"
          basedir="${build.core.dir}/impl"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          excludes="**/*.java, **/core/api/**, **/core/spi/**">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Core Implementation"/>

Modified: projects/jboss-jca/trunk/deployers/build.xml
===================================================================
--- projects/jboss-jca/trunk/deployers/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/deployers/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -65,7 +65,11 @@
     </copy>
 
     <jar destfile="${target.dir}/${name}-deployers-fungal.jar"
-         basedir="${build.deployers.dir}/jars/fungal">
+         basedir="${build.deployers.dir}/jars/fungal"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Deployers (Fungal)"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>

Modified: projects/jboss-jca/trunk/embedded/build.xml
===================================================================
--- projects/jboss-jca/trunk/embedded/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/embedded/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -60,6 +60,10 @@
     </copy>
     <jar destfile="${target.dir}/${name}-embedded.jar"
          basedir="${build.embedded.dir}/impl"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          excludes="META-INF/services/**,**/arquillian/**,**/*.java">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Embedded"/>
@@ -77,6 +81,10 @@
 
     <jar destfile="${target.dir}/${name}-embedded-arquillian.jar"
          basedir="${build.embedded.dir}/impl"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          includes="META-INF/**,**/arquillian/**"
          excludes="**/*.xml,**/*.java">
       <manifest>

Modified: projects/jboss-jca/trunk/sjc/build.xml
===================================================================
--- projects/jboss-jca/trunk/sjc/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/sjc/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -55,7 +55,11 @@
        ================================= -->
   <target name="jars" depends="compile">
     <jar destfile="${target.dir}/${name}-sjc.jar"
-         basedir="${build.sjc.dir}/impl">
+         basedir="${build.sjc.dir}/impl"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar SJC"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
@@ -123,7 +127,11 @@
     <unjar src="${target.dir}/${name}-sjc.jar" dest="${build.sjc.dir}/tmp"/>
     <jar destfile="${target.dir}/sjc/bin/${name}-sjc.jar"
          manifest="${build.sjc.dir}/tmp/META-INF/MANIFEST.MF"
-         basedir="${build.sjc.dir}/tmp"/>
+         basedir="${build.sjc.dir}/tmp"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"/>
     <delete dir="${build.sjc.dir}/tmp"/>
 
     <copy todir="${target.dir}/sjc/config">

Modified: projects/jboss-jca/trunk/validator/build.xml
===================================================================
--- projects/jboss-jca/trunk/validator/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/validator/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -66,6 +66,10 @@
 
     <jar destfile="${target.dir}/${name}-validator.jar"
          basedir="${build.validator.dir}/jars/validator"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          excludes="**/cli/**, **/ant/**">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Validator"/>
@@ -77,6 +81,10 @@
 
     <jar destfile="${target.dir}/${name}-validator-cli.jar"
          basedir="${build.validator.dir}/jars/validator"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          includes="**/cli/**">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Validator Command Line Interface"/>
@@ -88,6 +96,10 @@
   	
     <jar destfile="${target.dir}/${name}-validator-ant.jar"
          basedir="${build.validator.dir}/jars/validator"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
    	 includes="**/ant/**">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Validator Ant support"/>

Modified: projects/jboss-jca/trunk/web/build.xml
===================================================================
--- projects/jboss-jca/trunk/web/build.xml	2010-07-23 17:41:44 UTC (rev 107064)
+++ projects/jboss-jca/trunk/web/build.xml	2010-07-23 17:55:12 UTC (rev 107065)
@@ -60,6 +60,10 @@
     </copy>
     <jar destfile="${target.dir}/${name}-web.jar"
          basedir="${build.web.dir}/impl"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          excludes="**/console/**,**/*.java">
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Web"/>
@@ -71,6 +75,10 @@
 
     <jar destfile="${target.dir}/${name}-web-console.jar"
          basedir="${build.web.dir}/impl"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
          includes="**/console/**"
          excludes="**/*.java">
       <manifest>



More information about the jboss-cvs-commits mailing list