Skip to content

Commit a7617a7

Browse files
committed
maven: add a property to skip the sign goal
Signed-off-by: Federico Simoncelli <fsimonce@redhat.com>
1 parent b530f70 commit a7617a7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
<name>OpenStack Java SDK</name>
99
<description>OpenStack Java SDK</description>
1010

11+
<properties>
12+
<skip.sign>false</skip.sign>
13+
</properties>
1114

1215
<parent>
1316
<groupId>org.sonatype.oss</groupId>
@@ -102,6 +105,9 @@
102105
<groupId>org.apache.maven.plugins</groupId>
103106
<artifactId>maven-gpg-plugin</artifactId>
104107
<version>1.4</version>
108+
<configuration>
109+
<skip>${skip.sign}</skip>
110+
</configuration>
105111
<executions>
106112
<execution>
107113
<id>sign-artifacts</id>

0 commit comments

Comments
 (0)