You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by bg...@apache.org on 2012/10/09 21:19:53 UTC

svn commit: r1396214 - /opennlp/sandbox/opennlp-similarity/pom.xml

Author: bgalitsky
Date: Tue Oct  9 19:19:52 2012
New Revision: 1396214

URL: http://svn.apache.org/viewvc?rev=1396214&view=rev
Log:
OPENNLP-497 Fixed maven script to build distributions
assembly plugin is added

Modified:
    opennlp/sandbox/opennlp-similarity/pom.xml

Modified: opennlp/sandbox/opennlp-similarity/pom.xml
URL: http://svn.apache.org/viewvc/opennlp/sandbox/opennlp-similarity/pom.xml?rev=1396214&r1=1396213&r2=1396214&view=diff
==============================================================================
--- opennlp/sandbox/opennlp-similarity/pom.xml (original)
+++ opennlp/sandbox/opennlp-similarity/pom.xml Tue Oct  9 19:19:52 2012
@@ -31,7 +31,7 @@
 
 	<groupId>org.apache.opennlp</groupId>
 	<artifactId>tools-similarity</artifactId>
-	<version>0.0.1-incubating</version>
+	<version>0.0.1-SNAPSHOT</version>
 	<packaging>jar</packaging>
 
 	<name>OpenNLP Tool Similarity distribution</name>
@@ -44,7 +44,7 @@
 		<dependency>
 		  <groupId>org.apache.opennlp</groupId>
 		  <artifactId>opennlp-tools</artifactId>
-		  <version>1.5.3-incubating-SNAPSHOT</version>
+		  <version>1.5.2-incubating</version>
 		</dependency>
 		
 		<dependency>
@@ -157,6 +157,30 @@
 	          </execution> 
 	        </executions> 
 	      </plugin>
+	      <plugin>
+			  <artifactId>maven-assembly-plugin</artifactId> 
+				 <executions>
+					 <execution>
+					  <id>src</id> 
+					 <goals>
+					  	<goal>single</goal> 
+					  </goals>
+					  <phase>package</phase> 
+					 	<configuration>
+					 		<descriptors>
+					  			<descriptor>src/main/assembly/assembly.xml</descriptor> 
+					  		</descriptors>
+					  	</configuration>
+					  </execution>
+					 <execution>
+					  <id>source-release-assembly</id> 
+					 <configuration>
+					  <skipAssembly>true</skipAssembly> 
+					  </configuration>
+					  </execution>
+				  </executions>
+			  </plugin>
+	      
 		</plugins>
 	</build>
 </project>
\ No newline at end of file