Author: dkulp
Date: Mon Jun 9 15:49:12 2014
New Revision: 1601415
URL: http://svn.apache.org/r1601415
Log:
Define the versioning plugin as an execution in the parent pom. It can thus be
removed from ALL the other poms.
Modified:
aries/trunk/parent/pom.xml
aries/trunk/spi-fly/spi-fly-examples/spi-fly-example-provider-consumer-bundle/pom.xml
aries/trunk/subsystem/subsystem-itests-api-bundle/pom.xml
Modified: aries/trunk/parent/pom.xml
URL:
http://svn.apache.org/viewvc/aries/trunk/parent/pom.xml?rev=1601415&r1=1601414&r2=1601415&view=diff
==============================================================================
--- aries/trunk/parent/pom.xml (original)
+++ aries/trunk/parent/pom.xml Mon Jun 9 15:49:12 2014
@@ -233,6 +233,7 @@
<aries.osgi.remove.headers>Ignore-Package,Include-Resource,Private-Package,Bundle-DocURL</aries.osgi.remove.headers>
<aries.osgi.include.resource>{maven-resources}</aries.osgi.include.resource>
<aries.javadoc.exclude.packages>${aries.osgi.private.pkg}</aries.javadoc.exclude.packages>
+ <lastReleaseVersion>RELEASE</lastReleaseVersion>
</properties>
<build>
@@ -461,7 +462,7 @@
<plugin>
<groupId>org.apache.aries.versioning</groupId>
<artifactId>org.apache.aries.versioning.plugin</artifactId>
- <version>0.2.0</version>
+ <version>0.3.0-SNAPSHOT</version>
<configuration>
<oldArtifact>${project.groupId}:${project.artifactId}:${lastReleaseVersion}</oldArtifact>
</configuration>
@@ -470,6 +471,20 @@
</pluginManagement>
<plugins>
<plugin>
+ <groupId>org.apache.aries.versioning</groupId>
+ <artifactId>org.apache.aries.versioning.plugin</artifactId>
+ <version>0.3.0-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <id>default-verify</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>version-check</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<executions>
Modified:
aries/trunk/spi-fly/spi-fly-examples/spi-fly-example-provider-consumer-bundle/pom.xml
URL:
http://svn.apache.org/viewvc/aries/trunk/spi-fly/spi-fly-examples/spi-fly-example-provider-consumer-bundle/pom.xml?rev=1601415&r1=1601414&r2=1601415&view=diff
==============================================================================
---
aries/trunk/spi-fly/spi-fly-examples/spi-fly-example-provider-consumer-bundle/pom.xml
(original)
+++
aries/trunk/spi-fly/spi-fly-examples/spi-fly-example-provider-consumer-bundle/pom.xml
Mon Jun 9 15:49:12 2014
@@ -64,6 +64,9 @@
<properties>
<aries.osgi.export.pkg />
<aries.osgi.private.pkg />
+
+ <!-- this bundle has never been released, we should skip -->
+ <aries.skip.version.check>true</aries.skip.version.check>
</properties>
<build>
Modified: aries/trunk/subsystem/subsystem-itests-api-bundle/pom.xml
URL:
http://svn.apache.org/viewvc/aries/trunk/subsystem/subsystem-itests-api-bundle/pom.xml?rev=1601415&r1=1601414&r2=1601415&view=diff
==============================================================================
--- aries/trunk/subsystem/subsystem-itests-api-bundle/pom.xml (original)
+++ aries/trunk/subsystem/subsystem-itests-api-bundle/pom.xml Mon Jun 9
15:49:12 2014
@@ -42,6 +42,9 @@
org.apache.aries.subsystem.itests.hello.api
</aries.osgi.export.pkg>
<aries.osgi.private.pkg/>
+ <!-- this bundle has never been released, we should skip -->
+ <aries.skip.version.check>true</aries.skip.version.check>
+
</properties>
</project>