Author: dkulp
Date: Tue Feb 4 20:25:31 2014
New Revision: 1564465
URL: http://svn.apache.org/r1564465
Log:
Merged revisions 1564352 via git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1564352 | dkulp | 2014-02-04 10:43:40 -0500 (Tue, 04 Feb 2014) | 2 lines
Make sure the release profile involves the jaxws22 stuff
........
Modified:
cxf/branches/2.7.x-fixes/rt/frontend/jaxws/pom.xml
Modified: cxf/branches/2.7.x-fixes/rt/frontend/jaxws/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/rt/frontend/jaxws/pom.xml?rev=1564465&r1=1564464&r2=1564465&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/rt/frontend/jaxws/pom.xml (original)
+++ cxf/branches/2.7.x-fixes/rt/frontend/jaxws/pom.xml Tue Feb 4 20:25:31 2014
@@ -302,6 +302,92 @@
</build>
</profile>
<profile>
+ <id>release</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jaxws_2.2_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-transports-http</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ <properties>
+ <cxf.spi-dir>spi-2.2</cxf.spi-dir>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>add-jaxws22-source</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+
<source>${basedir}/src/main/jaxws22</source>
+ </sources>
+ </configuration>
+ </execution>
+ <execution>
+ <id>add-jaxws22-test-source</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>add-test-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+
<source>${basedir}/src/test/jaxws22</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>create-endorsed-dir</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+
<groupId>org.apache.geronimo.specs</groupId>
+
<artifactId>geronimo-jaxws_2.2_spec</artifactId>
+
<outputDirectory>${basedir}/target/endorsed</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <compilerArguments>
+
<endorseddirs>${basedir}/target/endorsed</endorseddirs>
+ </compilerArguments>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ </profile>
+ <profile>
<id>jdk17</id>
<activation>
<jdk>1.7</jdk>