Author: kstam
Date: Fri Jun  3 19:00:45 2011
New Revision: 1131140

URL: http://svn.apache.org/viewvc?rev=1131140&view=rev
Log:
JUDDI-488, adding a profile to compile against the JAX-WS Specification Version 
2.1. By default we use version 2.2.

Modified:
    juddi/trunk/uddi-ws/pom.xml

Modified: juddi/trunk/uddi-ws/pom.xml
URL: 
http://svn.apache.org/viewvc/juddi/trunk/uddi-ws/pom.xml?rev=1131140&r1=1131139&r2=1131140&view=diff
==============================================================================
--- juddi/trunk/uddi-ws/pom.xml (original)
+++ juddi/trunk/uddi-ws/pom.xml Fri Jun  3 19:00:45 2011
@@ -52,16 +52,41 @@
                 </plugins>
             </build>
         </profile>
+        <profile>
+      <id>jaxws22</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+      <dependencies>
+        <!-- the JAXWS 2.2 specification -->
+        <dependency>
+          <groupId>org.apache.geronimo.specs</groupId>
+          <artifactId>geronimo-jaxws_2.2_spec</artifactId>
+          <version>1.0</version>
+          <type>jar</type>
+        </dependency>
+      </dependencies>
+    </profile>
+    <profile>
+      <id>jaxws21</id>
+      <activation>
+        <activeByDefault>false</activeByDefault>
+      </activation>
+      <build>
+        <finalName>uddi-ws-jaxws21-${version}</finalName>
+      </build>
+      <dependencies>
+        <!-- the JAXWS 2.1 specification -->
+        <dependency>
+          <groupId>org.apache.geronimo.specs</groupId>
+          <artifactId>geronimo-jaxws_2.1_spec</artifactId>
+          <version>1.0</version>
+          <type>jar</type>
+        </dependency>
+      </dependencies>
+    </profile>
     </profiles>
        <dependencies>
-           <!--  the JAXWS specification -->
-               <dependency>
-                       <groupId>org.apache.geronimo.specs</groupId>
-                       <artifactId>geronimo-jaxws_2.1_spec</artifactId>
-                       <version>1.0</version>
-                       <type>jar</type>
-               </dependency>
-               <!--   -->
                <dependency>
                        <groupId>javax.xml.bind</groupId>
                        <artifactId>jaxb-api</artifactId>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to