[jboss-cvs] JBossAS SVN: r111245 - projects/jboss-jca/trunk/adapters.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Apr 25 11:54:50 EDT 2011


Author: jesper.pedersen
Date: 2011-04-25 11:54:49 -0400 (Mon, 25 Apr 2011)
New Revision: 111245

Modified:
   projects/jboss-jca/trunk/adapters/build.xml
Log:
Generate the ironjacamar-jdbc-* artifacts

Modified: projects/jboss-jca/trunk/adapters/build.xml
===================================================================
--- projects/jboss-jca/trunk/adapters/build.xml	2011-04-25 14:44:08 UTC (rev 111244)
+++ projects/jboss-jca/trunk/adapters/build.xml	2011-04-25 15:54:49 UTC (rev 111245)
@@ -300,6 +300,21 @@
        ================================= -->
   <target name="artifacts" depends="jars">
 
+    <jar destfile="${target.dir}/${name}-jdbc-sources.jar"
+         basedir="src/main/java"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
+         includes="**/adapters/jdbc/**">
+      <manifest>
+        <attribute name="Implementation-Title" value="IronJacamar Adapters JDBC - Sources"/>
+        <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
+        <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
+      </manifest>
+    </jar>
+
     <jar destfile="${target.dir}/jdbc-local-sources.jar"
          basedir="src/main/java"
          index="true"
@@ -371,6 +386,20 @@
       <fileset dir="${tools.dir}/api"/>
     </copy>
 
+    <jar destfile="${target.dir}/${name}-jdbc-javadoc.jar"
+         basedir="${build.adapters.dir}/docs/jdbc"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9">
+      <manifest>
+        <attribute name="Implementation-Title" value="IronJacamar Adapters JDBC - JavaDoc"/>
+        <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
+        <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
+      </manifest>
+    </jar>
+
     <jar destfile="${target.dir}/jdbc-local-javadoc.jar"
          basedir="${build.adapters.dir}/docs/jdbc"
          index="true"



More information about the jboss-cvs-commits mailing list