Author: asoldano
Date: 2014-12-19 09:27:00 -0500 (Fri, 19 Dec 2014)
New Revision: 19160
Modified:
stack/cxf/branches/arquillian/modules/dist/pom.xml
Log:
Move container specific dependencies in dist module under wildflyXYZ profiles, as the dist
module is now kind of coupled with the testsuite one and not meant to produce the old
bindist/srcdist for all target containers together
Modified: stack/cxf/branches/arquillian/modules/dist/pom.xml
===================================================================
--- stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-19 11:46:02 UTC (rev
19159)
+++ stack/cxf/branches/arquillian/modules/dist/pom.xml 2014-12-19 14:27:00 UTC (rev
19160)
@@ -42,27 +42,6 @@
<dependency>
<groupId>org.jboss.ws.cxf</groupId>
- <artifactId>jbossws-cxf-resources</artifactId>
- <version>${project.version}</version>
- <classifier>wildfly800</classifier>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.ws.cxf</groupId>
- <artifactId>jbossws-cxf-resources</artifactId>
- <version>${project.version}</version>
- <classifier>wildfly810</classifier>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.ws.cxf</groupId>
- <artifactId>jbossws-cxf-resources</artifactId>
- <version>${project.version}</version>
- <classifier>wildfly900</classifier>
- </dependency>
-
- <dependency>
- <groupId>org.jboss.ws.cxf</groupId>
<artifactId>jbossws-cxf-server</artifactId>
<version>${project.version}</version>
</dependency>
@@ -108,18 +87,7 @@
<artifactId>opensaml</artifactId>
<scope>provided</scope>
</dependency>
- <!-- container integration -->
<dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-wildfly800-server-integration</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.ws</groupId>
- <artifactId>jbossws-wildfly810-server-integration</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
<groupId>org.jboss</groupId>
<artifactId>jandex</artifactId>
</dependency>
@@ -280,6 +248,64 @@
</profile>
<!--
+ Name: wildfly800
+ Descr: WildFly-8.0.0 specific dependencies
+ -->
+ <profile>
+ <id>wildfly800</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-resources</artifactId>
+ <version>${project.version}</version>
+ <classifier>wildfly800</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-wildfly800-server-integration</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+
+ <!--
+ Name: wildfly810
+ Descr: WildFly-8.1.0 specific dependencies
+ -->
+ <profile>
+ <id>wildfly810</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-resources</artifactId>
+ <version>${project.version}</version>
+ <classifier>wildfly810</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.ws</groupId>
+ <artifactId>jbossws-wildfly810-server-integration</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+ </profile>
+
+ <!--
+ Name: wildfly900
+ Descr: WildFly-9.0.0 specific dependencies
+ -->
+ <profile>
+ <id>wildfly900</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.ws.cxf</groupId>
+ <artifactId>jbossws-cxf-resources</artifactId>
+ <version>${project.version}</version>
+ <classifier>wildfly900</classifier>
+ </dependency>
+ </dependencies>
+ </profile>
+
+ <!--
Name: spring
Descr: Include spring libraries when updating the stack on the server
-->
Show replies by date