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

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


The following commit(s) were added to refs/heads/release_practice by this push:
     new 35cb3e2  try to find a way to only skip gpg on CI server
35cb3e2 is described below

commit 35cb3e2df60fa65c86b0d506e2a04c38c50a9d44
Author: Alex Harui <[email protected]>
AuthorDate: Wed Feb 20 21:46:43 2019 -0800

    try to find a way to only skip gpg on CI server
---
 pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index 28076ef..9dcf9b4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -52,6 +52,7 @@
     <air.version>20.0</air.version>
 
     <jburgTypesRequired>true</jburgTypesRequired>
+    <skipgpg>false</skipgpg>
     <compiler-build-tools.version>1.0.0</compiler-build-tools.version>
     <compiler-jburg-types.version>1.0.0</compiler-jburg-types.version>
 
@@ -188,6 +189,13 @@
 
   <build>
     <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-gpg-plugin</artifactId>
+        <configuration>
+          <skip>${skipgpg}</skip><!--true to skip gpg if building release on 
CI server -->
+        </configuration>
+      </plugin>
       <!-- Check if all source files have the required apache license headers 
-->
       <plugin>
         <groupId>org.apache.rat</groupId>

Reply via email to