You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by jg...@apache.org on 2012/01/28 01:13:04 UTC

svn commit: r1236935 - in /incubator/giraph/trunk: CHANGELOG pom.xml

Author: jghoman
Date: Sat Jan 28 00:13:03 2012
New Revision: 1236935

URL: http://svn.apache.org/viewvc?rev=1236935&view=rev
Log:
GIRAPH-131. enable creation of test-jars to simplify testing in downstream projects.  Contributed by André Kelpe.

Modified:
    incubator/giraph/trunk/CHANGELOG
    incubator/giraph/trunk/pom.xml

Modified: incubator/giraph/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/incubator/giraph/trunk/CHANGELOG?rev=1236935&r1=1236934&r2=1236935&view=diff
==============================================================================
--- incubator/giraph/trunk/CHANGELOG (original)
+++ incubator/giraph/trunk/CHANGELOG Sat Jan 28 00:13:03 2012
@@ -2,6 +2,9 @@ Giraph Change Log
 
 Release 0.1.0 - unreleased
 
+  GIRAPH-131: Enable creation of test-jars to simplify testing in 
+  downstream projects.  (André Kelpe via jghoman)
+  
   GIRAPH-129: Enable creation of javadoc and sources jars.
   (André Kelpe via jghoman)
   

Modified: incubator/giraph/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/giraph/trunk/pom.xml?rev=1236935&r1=1236934&r2=1236935&view=diff
==============================================================================
--- incubator/giraph/trunk/pom.xml (original)
+++ incubator/giraph/trunk/pom.xml Sat Jan 28 00:13:03 2012
@@ -24,7 +24,7 @@ under the License.
   <groupId>org.apache.giraph</groupId>
   <artifactId>giraph</artifactId>
   <packaging>jar</packaging>
-  <version>0.1</version>
+  <version>0.1-SNAPSHOT</version>
 
   <name>Apache Incubator Giraph</name>
   <url>http://incubator.apache.org/giraph/</url>
@@ -285,6 +285,18 @@ under the License.
         </executions>
       </plugin>
       <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>2.3.2</version>
+          <executions>
+              <execution>
+                  <goals>
+                      <goal>test-jar</goal>
+                  </goals>
+              </execution>
+          </executions>
+      </plugin>
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>findbugs-maven-plugin</artifactId>
         <version>2.3.2</version>