[jboss-cvs] JBossAS SVN: r60524 - projects/jaxr/trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Feb 14 04:21:46 EST 2007


Author: thomas.diesler at jboss.com
Date: 2007-02-14 04:21:46 -0500 (Wed, 14 Feb 2007)
New Revision: 60524

Modified:
   projects/jaxr/trunk/
   projects/jaxr/trunk/pom.xml
Log:
Fix compile dependencies


Property changes on: projects/jaxr/trunk
___________________________________________________________________
Name: svn:ignore
   - 
output-eclipse

   + 
output-eclipse
output


Modified: projects/jaxr/trunk/pom.xml
===================================================================
--- projects/jaxr/trunk/pom.xml	2007-02-13 22:16:56 UTC (rev 60523)
+++ projects/jaxr/trunk/pom.xml	2007-02-14 09:21:46 UTC (rev 60524)
@@ -4,7 +4,7 @@
   <groupId>jboss</groupId>
   <artifactId>jboss-jaxr</artifactId>
   <packaging>jar</packaging>
-  <version>1.0.0</version>
+  <version>2.0.0.GA</version>
   <name>JBoss Registry</name>
   <url>http://labs.jboss.org/portal/jbossws/</url>
   <description>JBoss JAXR</description>
@@ -20,7 +20,7 @@
   </organization>
   <repositories>
     <repository>
-      <id>jboss</id>
+      <id>repo-maven2</id>
       <name>JBoss Inc. Repository</name>
       <layout>default</layout>
       <url>http://repository.jboss.com/maven2/</url>
@@ -157,6 +157,46 @@
               <tasks>
                 <mkdir dir="${basedir}/output/lib"/>
                 
+                <!--juddi-service.jar-->
+                <jar jarfile="${basedir}/output/lib/juddi-service.jar">
+                  <fileset dir="${basedir}/output/classes">
+                    <include name="org/jboss/jaxr/juddi/**"/>
+                  </fileset>
+                </jar>
+                
+                <jar jarfile="${basedir}/output/lib/juddisaaj.jar">
+                  <fileset dir="${basedir}/output/classes">
+                    <include name="org/jboss/jaxr/juddi/transport/**"/>
+                  </fileset>
+                </jar>
+                
+                <!--juddiws.war -->
+                <war warfile="${basedir}/output/lib/juddiws.war" webxml="${basedir}/src/resources/juddi/jse/web.xml">
+                  <webinf dir="${basedir}/src/resources/juddi/jse">
+                    <include name="juddi*"/>
+                    <include name="jboss-web.xml"/>
+                    <exclude name="web.xml"/>
+                  </webinf>
+                  <classes dir="${basedir}/output/classes">
+                    <include name="org/jboss/jaxr/juddi/JUDDIServlet.*"/>
+                  </classes>
+                  <lib dir="${juddi.juddi.lib}">
+                    <include name="juddi.jar"/>
+                  </lib>
+                </war>
+                
+                <!--juddi-service.sar-->
+                <jar jarfile="${basedir}/output/lib/juddi-service.sar">
+                  <metainf dir="${basedir}/src/resources/juddi">
+                    <include name="*.xml"/>
+                    <include name="ddl/*.ddl"/>
+                  </metainf>
+                  
+                  <fileset dir="${basedir}/output/lib">
+                    <include name="juddi-service.jar"/>
+                  </fileset>
+                </jar>
+                
               </tasks>
             </configuration>
             <goals>
@@ -175,16 +215,35 @@
     </dependency>
     <dependency>
       <groupId>jboss</groupId>
-      <artifactId>jboss-logging-spi</artifactId>
-      <version>2.0.2.GA</version>
+      <artifactId>jboss-common</artifactId>
+      <version>1.0.4.GA</version>
     </dependency>
     <dependency>
       <groupId>jboss</groupId>
-      <artifactId>jboss-logging-log4j</artifactId>
-      <version>2.0.2.GA</version>
-      <scope>runtime</scope>
+      <artifactId>jboss-system</artifactId>
+      <version>5.0-SNAPSHOT</version>
     </dependency>
     <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-j2ee</artifactId>
+      <version>4.0.2</version>
+    </dependency>
+    <dependency>
+      <groupId>jboss.jbossws</groupId>
+      <artifactId>jboss-jaxrpc</artifactId>
+      <version>1.0.4.GA</version>
+    </dependency>
+    <dependency>
+      <groupId>jboss.jbossws</groupId>
+      <artifactId>jboss-saaj</artifactId>
+      <version>1.0.4.GA</version>
+    </dependency>
+    <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-jmx</artifactId>
+      <version>4.0.4</version>
+    </dependency>
+    <dependency>
       <groupId>juddi</groupId>
       <artifactId>juddi</artifactId>
       <version>0.9RC4</version>




More information about the jboss-cvs-commits mailing list