From: <tho...@us...> - 2012-08-03 18:58:44
|
Revision: 6408 http://bigdata.svn.sourceforge.net/bigdata/?rev=6408&view=rev Author: thompsonbry Date: 2012-08-03 18:58:38 +0000 (Fri, 03 Aug 2012) Log Message: ----------- Enabling generation of maven snapshots during CI. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_2_0/build.xml branches/BIGDATA_RELEASE_1_2_0/pom.xml Modified: branches/BIGDATA_RELEASE_1_2_0/build.xml =================================================================== --- branches/BIGDATA_RELEASE_1_2_0/build.xml 2012-08-03 15:06:58 UTC (rev 6407) +++ branches/BIGDATA_RELEASE_1_2_0/build.xml 2012-08-03 18:58:38 UTC (rev 6408) @@ -322,6 +322,15 @@ </manifest> </jar> </target> + + <!-- Deploy the JAR to the maven repository. --> + <target name="maven-deploy" depends="jar" + description="Deploy the jar to the maven repository."> + <exec command="mvn"> + <arg value="clean"/> + <arg value="deploy"/> + </exec> + </target> <!-- This generates an osgi bundle jar, but does not bundle the dependencies. See 'bundleJar'. --> Modified: branches/BIGDATA_RELEASE_1_2_0/pom.xml =================================================================== --- branches/BIGDATA_RELEASE_1_2_0/pom.xml 2012-08-03 15:06:58 UTC (rev 6407) +++ branches/BIGDATA_RELEASE_1_2_0/pom.xml 2012-08-03 18:58:38 UTC (rev 6408) @@ -48,7 +48,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>com.bigdata</groupId> <artifactId>bigdata</artifactId> - <version>1.2.1</version> + <version>1.2.2-SNAPSHOT</version> <packaging>pom</packaging> <name>bigdata(R)</name> <description>Bigdata(R) Maven Build</description> @@ -156,6 +156,12 @@ <name>bigdata(R) releases</name> <url>scpexe://shell.speakeasy.net/home/t/thompsonbry/systap.com/maven/releases</url> </repository> + <snapshotRepository> + <id>bigdata.snapshots</id> + <name>bigdata(R) snapshots</name> + <url>scpexe://shell.speakeasy.net/home/t/thompsonbry/systap.com/maven/snapshots</url> + <uniqueVersion>true</uniqueVersion> + </snapshotRepository> </distributionManagement> <repositories> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |