Author: dkulp
Date: Wed Jan 2 12:50:25 2008
New Revision: 608221
URL: http://svn.apache.org/viewvc?rev=608221&view=rev
Log:
Merged revisions 604886 via svnmerge from
https://svn.apache.org/repos/asf/incubator/cxf/trunk
........
r604886 | dkulp | 2007-12-17 09:51:43 -0500 (Mon, 17 Dec 2007) | 2 lines
Only build shaded source jar with deploy profile (which turns on the source
jar building for everything else)
........
Modified:
incubator/cxf/branches/2.0.x-fixes/ (props changed)
incubator/cxf/branches/2.0.x-fixes/distribution/bundle/pom.xml
Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified: incubator/cxf/branches/2.0.x-fixes/distribution/bundle/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/bundle/pom.xml?rev=608221&r1=608220&r2=608221&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/distribution/bundle/pom.xml (original)
+++ incubator/cxf/branches/2.0.x-fixes/distribution/bundle/pom.xml Wed Jan 2
12:50:25 2008
@@ -36,6 +36,7 @@
<properties>
<maven.test.skip>true</maven.test.skip>
<cxf.version>${pom.version}</cxf.version>
+ <createSourcesJar>false</createSourcesJar>
</properties>
<dependencies>
@@ -268,7 +269,7 @@
<configuration>
<shadedGroupFilter>org.apache.cxf</shadedGroupFilter>
<shadedArtifactAttached>false</shadedArtifactAttached>
- <createSourcesJar>true</createSourcesJar>
+
<createSourcesJar>${createSourcesJar}</createSourcesJar>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<createDependencyReducedPom>true</createDependencyReducedPom>
@@ -315,6 +316,9 @@
<profiles>
<profile>
<id>deploy</id>
+ <properties>
+ <createSourcesJar>true</createSourcesJar>
+ </properties>
<build>
<plugins>
<plugin>