Author: dkulp
Date: Fri Feb 14 20:25:20 2014
New Revision: 1568507
URL: http://svn.apache.org/r1568507
Log:
Try to fix release:prepare
Modified:
cxf/trunk/osgi/bundle/all/pom.xml
cxf/trunk/osgi/bundle/pom.xml
Modified: cxf/trunk/osgi/bundle/all/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/osgi/bundle/all/pom.xml?rev=1568507&r1=1568506&r2=1568507&view=diff
==============================================================================
--- cxf/trunk/osgi/bundle/all/pom.xml (original)
+++ cxf/trunk/osgi/bundle/all/pom.xml Fri Feb 14 20:25:20 2014
@@ -382,6 +382,9 @@
<profiles>
<profile>
<id>deploy</id>
+ <properties>
+ <createSourcesJar>true</createSourcesJar>
+ </properties>
<build>
<plugins>
<plugin>
@@ -389,6 +392,24 @@
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
+ <id>unpack-sources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>unpack-dependencies</goal>
+ </goals>
+ <configuration>
+
<includeGroupIds>org.apache.cxf</includeGroupIds>
+ <classifier>sources</classifier>
+
<outputDirectory>${project.build.directory}/sources</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
<id>unpack-plugin-sources</id>
<phase>generate-sources</phase>
<goals>
@@ -408,6 +429,27 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>package</id>
+ <phase>package</phase>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <minmemory>128m</minmemory>
+ <maxmemory>512m</maxmemory>
+ <header>Apache CXF API</header>
+ <footer>Apache CXF API</footer>
+
<sourcepath>${project.build.directory}/sources</sourcepath>
+ <notimestamp>true</notimestamp>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>
Modified: cxf/trunk/osgi/bundle/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/trunk/osgi/bundle/pom.xml?rev=1568507&r1=1568506&r2=1568507&view=diff
==============================================================================
--- cxf/trunk/osgi/bundle/pom.xml (original)
+++ cxf/trunk/osgi/bundle/pom.xml Fri Feb 14 20:25:20 2014
@@ -126,57 +126,6 @@ cxf.schema.version = ${os}
</resource>
</resources>
</build>
- <profiles>
- <profile>
- <id>deploy</id>
- <properties>
- <createSourcesJar>true</createSourcesJar>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack-sources</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>unpack-dependencies</goal>
- </goals>
- <configuration>
-
<includeGroupIds>org.apache.cxf</includeGroupIds>
- <classifier>sources</classifier>
-
<outputDirectory>${project.build.directory}/sources</outputDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <executions>
- <execution>
- <id>package</id>
- <phase>package</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <minmemory>128m</minmemory>
- <maxmemory>512m</maxmemory>
- <header>Apache CXF API</header>
- <footer>Apache CXF API</footer>
-
<sourcepath>${project.build.directory}/sources</sourcepath>
- <notimestamp>true</notimestamp>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
<modules>
<module>all</module>
<module>compatible</module>