Shouldn't these be in the release profile so they are activated automatically?

On 09/12/2006, at 3:20 AM, [EMAIL PROTECTED] wrote:

Author: evenisse
Date: Fri Dec  8 08:20:43 2006
New Revision: 484649

URL: http://svn.apache.org/viewvc?view=rev&rev=484649
Log:
add two profiles for the release

Modified:
    maven/scm/trunk/pom.xml

Modified: maven/scm/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/scm/trunk/pom.xml? view=diff&rev=484649&r1=484648&r2=484649 ====================================================================== ========
--- maven/scm/trunk/pom.xml (original)
+++ maven/scm/trunk/pom.xml Fri Dec  8 08:20:43 2006
@@ -105,4 +105,46 @@
       <url>scp://people.apache.org/www/maven.apache.org/scm</url>
     </site>
   </distributionManagement>
+
+  <profiles>
+    <profile>
+      <id>sharedResources</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-remote-resources-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>process</goal>
+                </goals>
+                <configuration>
+                  <resourceBundles>
+ <resourceBundle>org.apache:apache-jar-resource- bundle:1.0</resourceBundle>
+                  </resourceBundles>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>gpgsign</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
 </project>

Reply via email to