You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@opennlp.apache.org by jo...@apache.org on 2011/01/26 15:37:15 UTC

svn commit: r1063735 - in /incubator/opennlp/trunk/opennlp-distr: pom.xml src/main/assembly/bin.xml

Author: joern
Date: Wed Jan 26 14:37:15 2011
New Revision: 1063735

URL: http://svn.apache.org/viewvc?rev=1063735&view=rev
Log:
OPENNLP-97 Added the maven changes plugin to generate the changes report

Modified:
    incubator/opennlp/trunk/opennlp-distr/pom.xml
    incubator/opennlp/trunk/opennlp-distr/src/main/assembly/bin.xml

Modified: incubator/opennlp/trunk/opennlp-distr/pom.xml
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp-distr/pom.xml?rev=1063735&r1=1063734&r2=1063735&view=diff
==============================================================================
--- incubator/opennlp/trunk/opennlp-distr/pom.xml (original)
+++ incubator/opennlp/trunk/opennlp-distr/pom.xml Wed Jan 26 14:37:15 2011
@@ -79,4 +79,35 @@
 			</plugin>
 		</plugins>
 	</build>
+	
+	<profiles>
+    <profile>
+      <id>apache-release</id>
+      
+      <build>
+        <!-- Run jira report -->
+        <!-- depends on having -DjiraVersion set -->
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-changes-plugin</artifactId>
+             <version>2.3</version>
+            <executions>
+              <execution>
+              <id>default-cli</id>
+              <phase>generate-resources</phase> 
+              <goals><goal>jira-report</goal></goals>
+                <configuration>
+                  <fixVersionIds>12315983</fixVersionIds>
+                  <outputDirectory>${basedir}/target/issuesFixed/</outputDirectory>
+                  <maxEntries>1000</maxEntries> <!-- hopefully, bigger than ever needed -->
+                </configuration>
+              </execution>
+            </executions>  
+          </plugin>
+        </plugins>     
+      </build>
+    </profile>
+  </profiles> 
+  
 </project>
\ No newline at end of file

Modified: incubator/opennlp/trunk/opennlp-distr/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/incubator/opennlp/trunk/opennlp-distr/src/main/assembly/bin.xml?rev=1063735&r1=1063734&r2=1063735&view=diff
==============================================================================
--- incubator/opennlp/trunk/opennlp-distr/src/main/assembly/bin.xml (original)
+++ incubator/opennlp/trunk/opennlp-distr/src/main/assembly/bin.xml Wed Jan 26 14:37:15 2011
@@ -60,6 +60,15 @@
 	      <includes>
 	        <include>README</include>
 	        <include>RELEASE_NOTES.html</include>
+	      </includes>       
+	    </fileSet>
+	    
+	    <fileSet>
+	      <directory>target</directory>
+	      <outputDirectory></outputDirectory>
+	      <fileMode>644</fileMode>
+	      <directoryMode>755</directoryMode> 
+	      <includes>
 	        <include>issuesFixed/**</include>      
 	      </includes>       
 	    </fileSet>