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/03/03 02:46:51 UTC

[royale-typedefs] branch release/0.9.6 updated: make gpg skippable

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-typedefs.git


The following commit(s) were added to refs/heads/release/0.9.6 by this push:
     new 8d9f49f  make gpg skippable
8d9f49f is described below

commit 8d9f49f90df9f29cbea37ece049d3a98cf315231
Author: Alex Harui <ah...@apache.org>
AuthorDate: Sat Mar 2 18:46:33 2019 -0800

    make gpg skippable
---
 pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index 9623af6..21077b7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -49,6 +49,7 @@
     <royale.build-tools.version>1.0.0</royale.build-tools.version>
 
     <git.executable>git</git.executable>
+    <skipgpg>false</skipgpg>
 
     <!-- URL of the ASF SonarQube server -->
     <sonar.host.url>https://builds.apache.org/analysis</sonar.host.url>
@@ -101,6 +102,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>
+      <plugin>
         <groupId>org.sonarsource.scanner.maven</groupId>
         <artifactId>sonar-maven-plugin</artifactId>
         <version>3.2</version>