You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2019/02/14 02:47:03 UTC

[royale-compiler] branch release/0.9.6 updated: suppress gpg when so we can run release:prepare on CI server

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch release/0.9.6
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/release/0.9.6 by this push:
     new 0446e37  suppress gpg when so we can run release:prepare on CI server
0446e37 is described below

commit 0446e3735c27c5ac18da205aec1eb2ddb46ba769
Author: Alex Harui <ah...@apache.org>
AuthorDate: Wed Feb 13 18:46:47 2019 -0800

    suppress gpg when so we can run release:prepare on CI server
---
 pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pom.xml b/pom.xml
index 6740265..e0170b5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -139,6 +139,13 @@
         <build>
           <plugins>
             <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-gpg-plugin</artifactId>
+              <configuration>
+                <skip>true</skip><!--true to skip gpg if building release on CI server -->
+              </configuration>
+            </plugin>
+            <plugin>
               <groupId>net.sourceforge.jburg</groupId>
               <artifactId>jburg-maven-plugin</artifactId>
               <version>1.10.4</version>