You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2015/02/24 22:48:30 UTC

svn commit: r1662123 - /maven/resources/trunk/apache-resource-bundles/pom.xml

Author: dennisl
Date: Tue Feb 24 21:48:30 2015
New Revision: 1662123

URL: http://svn.apache.org/r1662123
Log:
Add an incomplete but usable configuration for maven-changes-plugin.

Modified:
    maven/resources/trunk/apache-resource-bundles/pom.xml

Modified: maven/resources/trunk/apache-resource-bundles/pom.xml
URL: http://svn.apache.org/viewvc/maven/resources/trunk/apache-resource-bundles/pom.xml?rev=1662123&r1=1662122&r2=1662123&view=diff
==============================================================================
--- maven/resources/trunk/apache-resource-bundles/pom.xml (original)
+++ maven/resources/trunk/apache-resource-bundles/pom.xml Tue Feb 24 21:48:30 2015
@@ -59,6 +59,46 @@
     <pluginManagement>
       <plugins>
         <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-changes-plugin</artifactId>
+          <version>2.11</version>
+          <configuration>
+            <issueManagementSystems>
+              <issueManagementSystem>JIRA</issueManagementSystem>
+            </issueManagementSystems>
+            <maxEntries>1000</maxEntries>
+            <runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
+            <versionPrefix>${project.artifactId}-</versionPrefix>
+            <!-- Used by announcement-generate goal -->
+<!-- TODO Which template should we use for Apache Resource Bundles?            
+            <templateDirectory>org/apache/maven/shared</templateDirectory>
+-->
+            <!-- Used by announcement-mail goal -->
+            <subject>[ANN] ${project.name} ${project.version} Released</subject>
+            <toAddresses>
+              <toAddress implementation="java.lang.String">announce@apache.org</toAddress>
+              <toAddress implementation="java.lang.String">announce@maven.apache.org</toAddress>
+              <toAddress implementation="java.lang.String">users@maven.apache.org</toAddress>
+            </toAddresses>
+            <ccAddresses>
+              <ccAddress implementation="java.lang.String">dev@maven.apache.org</ccAddress>
+            </ccAddresses>
+            <!-- These values need to be specified as properties in the profile apache-release in your settings.xml -->
+            <fromDeveloperId>${apache.availid}</fromDeveloperId>
+            <smtpHost>${smtp.host}</smtpHost>
+          </configuration>
+          <dependencies>
+            <!-- Used by announcement-generate goal -->
+<!-- Uncomment this when we have decided which template to use
+            <dependency>
+              <groupId>org.apache.maven.shared</groupId>
+              <artifactId>maven-shared-resources</artifactId>
+              <version>1</version>
+            </dependency>
+-->
+          </dependencies>
+        </plugin>
+        <plugin>
           <artifactId>maven-release-plugin</artifactId>
           <configuration>
             <tagBase>https://svn.apache.org/repos/asf/maven/resources/tags</tagBase>