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-typedefs.git
The following commit(s) were added to refs/heads/release_practice by this push:
new 0e5755b make gpg skippable
0e5755b is described below
commit 0e5755b585d91107ea7e3ba88d8b52ebb83a5885
Author: Alex Harui <[email protected]>
AuthorDate: Sat Mar 2 18:44:41 2019 -0800
make gpg skippable
---
pom.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/pom.xml b/pom.xml
index 275a273..34bd01b 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>