[jboss-cvs] JBossAS SVN: r107108 - in projects/jboss-jca/trunk: api and 9 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jul 27 09:15:05 EDT 2010


Author: jesper.pedersen
Date: 2010-07-27 09:15:03 -0400 (Tue, 27 Jul 2010)
New Revision: 107108

Modified:
   projects/jboss-jca/trunk/api/build.xml
   projects/jboss-jca/trunk/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/doc/userguide/en/modules/community.xml
   projects/jboss-jca/trunk/doc/userguide/en/modules/download.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:
Rebranding for website urls

Modified: projects/jboss-jca/trunk/api/build.xml
===================================================================
--- projects/jboss-jca/trunk/api/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/api/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -57,7 +57,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="The Java EE Connector Architecture 1.6 API"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>

Modified: projects/jboss-jca/trunk/build.xml
===================================================================
--- projects/jboss-jca/trunk/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -425,7 +425,8 @@
         </fileset>
       </auxClasspath>
       <class location="${target.dir}/${name}-codegenerator.jar" />
-      <class location="${target.dir}/${name}-common.jar" />
+      <class location="${target.dir}/${name}-common-api.jar" />
+      <class location="${target.dir}/${name}-common-impl.jar" />
       <class location="${target.dir}/${name}-core-api.jar" />
       <class location="${target.dir}/${name}-core-impl.jar" />
       <class location="${target.dir}/${name}-core-spi.jar" />
@@ -464,7 +465,8 @@
         </fileset>
       </auxClasspath>
       <class location="${target.dir}/${name}-codegenerator.jar" />
-      <class location="${target.dir}/${name}-common.jar" />
+      <class location="${target.dir}/${name}-common-api.jar" />
+      <class location="${target.dir}/${name}-common-impl.jar" />
       <class location="${target.dir}/${name}-core-api.jar" />
       <class location="${target.dir}/${name}-core-impl.jar" />
       <class location="${target.dir}/${name}-core-spi.jar" />

Modified: projects/jboss-jca/trunk/codegenerator/build.xml
===================================================================
--- projects/jboss-jca/trunk/codegenerator/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/codegenerator/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -73,7 +73,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Common"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
         <attribute name="Main-Class" value="org.jboss.jca.codegenerator.Main"/>
       </manifest>

Modified: projects/jboss-jca/trunk/common/build.xml
===================================================================
--- projects/jboss-jca/trunk/common/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/common/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -47,19 +47,35 @@
        Target: jars
        ================================= -->
   <target name="jars" depends="compile">
-    <jar destfile="${target.dir}/${name}-common.jar"
+    <jar destfile="${target.dir}/${name}-common-api.jar"
          basedir="${build.common.dir}"
          index="true"
          indexMetaInf="true"
          update="true"
-         level="9">
+         level="9"
+         includes="**/common/api/**">
       <manifest>
-	<attribute name="Implementation-Title" value="IronJacamar Common"/>
+	<attribute name="Implementation-Title" value="IronJacamar Common API"/>
 	<attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-	<attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+	<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}/${name}-common-impl.jar"
+         basedir="${build.common.dir}"
+         index="true"
+         indexMetaInf="true"
+         update="true"
+         level="9"
+         excludes="**/*.java, **/common/api/**">
+      <manifest>
+	<attribute name="Implementation-Title" value="IronJacamar Common Implementation"/>
+	<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>
   </target>
   
   <!-- ================================= 

Modified: projects/jboss-jca/trunk/core/build.xml
===================================================================
--- projects/jboss-jca/trunk/core/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/core/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -59,7 +59,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Core API"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>
@@ -74,7 +74,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Core SPI"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>
@@ -89,7 +89,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Core Implementation"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>

Modified: projects/jboss-jca/trunk/deployers/build.xml
===================================================================
--- projects/jboss-jca/trunk/deployers/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/deployers/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -73,7 +73,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Deployers (Fungal)"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>

Modified: projects/jboss-jca/trunk/doc/userguide/en/modules/community.xml
===================================================================
--- projects/jboss-jca/trunk/doc/userguide/en/modules/community.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/doc/userguide/en/modules/community.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -7,7 +7,7 @@
 
       <para>The website contains the latest information about the project and links to important information.</para>
 
-      <para>The website is located at <ulink url="http://www.jboss.org/jca/">http://www.jboss.org/jca/</ulink></para>
+      <para>The website is located at <ulink url="http://www.jboss.org/ironjacamar/">http://www.jboss.org/ironjacamar/</ulink></para>
 
    </section>
 

Modified: projects/jboss-jca/trunk/doc/userguide/en/modules/download.xml
===================================================================
--- projects/jboss-jca/trunk/doc/userguide/en/modules/download.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/doc/userguide/en/modules/download.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -2,12 +2,12 @@
 <chapter id="gettingstarted">
    <title>Download</title>
    <para>The official IronJacamar project page is <ulink
-   url="http://www.jboss.org/jca/">http://www.jboss.org/jca/</ulink> where you can download the software.</para>
+   url="http://www.jboss.org/ironjacamar/">http://www.jboss.org/ironjacamar/</ulink> where you can download the software.</para>
 
    <section id="download">
       <title>Download</title>
 
-      <para>The download location is zone: <ulink url="http://www.jboss.org/jca/downloads/">http://www.jboss.org/jca/downloads/</ulink></para>
+      <para>The download location is zone: <ulink url="http://www.jboss.org/ironjacamar/downloads/">http://www.jboss.org/ironjacamar/downloads/</ulink></para>
 
       <para>Each release is labelled with a version number and an identifier.</para>
 

Modified: projects/jboss-jca/trunk/embedded/build.xml
===================================================================
--- projects/jboss-jca/trunk/embedded/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/embedded/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -68,7 +68,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Embedded"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>
@@ -90,7 +90,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Embedded"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>

Modified: projects/jboss-jca/trunk/sjc/build.xml
===================================================================
--- projects/jboss-jca/trunk/sjc/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/sjc/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -63,7 +63,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar SJC"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
         <attribute name="Main-Class" value="org.jboss.jca.sjc.Main"/>
       </manifest>

Modified: projects/jboss-jca/trunk/validator/build.xml
===================================================================
--- projects/jboss-jca/trunk/validator/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/validator/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -74,8 +74,9 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Validator"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
+        <attribute name="Class-Path" value="jbossxb.jar jboss-logging-spi.jar jboss-common-core.jar jboss-metadata-rar.jar jboss-metadata-common.jar jboss-reflect.jar jboss-mdr.jar ${name}-spec-api.jar papaki-core.jar javassist.jar ${name}-common-impl.jar"/>
       </manifest>
     </jar>
 
@@ -87,10 +88,12 @@
          level="9"
          includes="**/cli/**">
       <manifest>
+        <attribute name="Main-Class" value="org.jboss.jca.validator.cli.Main"/>
         <attribute name="Implementation-Title" value="IronJacamar Validator Command Line Interface"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
+        <attribute name="Class-Path" value="${name}-validator.jar"/>
       </manifest>
     </jar>
   	
@@ -104,8 +107,9 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Validator Ant support"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
+        <attribute name="Class-Path" value="${name}-validator.jar"/>
       </manifest>
     </jar>
   </target>

Modified: projects/jboss-jca/trunk/web/build.xml
===================================================================
--- projects/jboss-jca/trunk/web/build.xml	2010-07-27 12:58:44 UTC (rev 107107)
+++ projects/jboss-jca/trunk/web/build.xml	2010-07-27 13:15:03 UTC (rev 107108)
@@ -68,7 +68,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Web"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>
@@ -84,7 +84,7 @@
       <manifest>
         <attribute name="Implementation-Title" value="IronJacamar Web Console"/>
         <attribute name="Implementation-Version" value="${major}.${minor}.${patch}.${type}"/>
-        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/jca)"/>
+        <attribute name="Implementation-Vendor" value="The IronJacamar project (http://www.jboss.org/ironjacamar)"/>
         <attribute name="Implementation-Vendor-Id" value="org.jboss"/>
       </manifest>
     </jar>



More information about the jboss-cvs-commits mailing list