You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2013/09/03 22:06:07 UTC

svn commit: r1519829 - /maven/plugins/trunk/pom.xml

Author: rfscholte
Date: Tue Sep  3 20:06:06 2013
New Revision: 1519829

URL: http://svn.apache.org/r1519829
Log:
Add non-windows profile with maven-gpg-plugin, since Jenkins Windows slave @Apache infra has no gpg installed

Modified:
    maven/plugins/trunk/pom.xml

Modified: maven/plugins/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/pom.xml?rev=1519829&r1=1519828&r2=1519829&view=diff
==============================================================================
--- maven/plugins/trunk/pom.xml (original)
+++ maven/plugins/trunk/pom.xml Tue Sep  3 20:06:06 2013
@@ -62,7 +62,8 @@ under the License.
     <module>maven-docck-plugin</module>
     <module>maven-ear-plugin</module>
     <module>maven-ejb-plugin</module>
-    <module>maven-gpg-plugin</module>
+    <!-- Moved to non-windows profile, since there's no gpg.exe available by default -->
+    <!-- <module>maven-gpg-plugin</module> -->
     <module>maven-help-plugin</module>
     <module>maven-install-plugin</module>
     <!--Moved to maven-3 profile as a workaround for MNG-3814
@@ -107,5 +108,17 @@ under the License.
         <module>maven-shade-plugin</module>
       </modules>
     </profile>
+    
+    <profile>
+      <id>non-windows</id>
+      <activation>
+        <os>
+          <family>!windows</family>
+        </os>
+      </activation>
+      <modules>
+        <module>maven-gpg-plugin</module>
+      </modules>
+    </profile>
   </profiles>
 </project>