We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d7b823 commit ffdd5daCopy full SHA for ffdd5da
pom.xml
@@ -35,6 +35,7 @@
35
<gpg-plugin.version>1.6</gpg-plugin.version>
36
<staging-plugin.version>1.6.7</staging-plugin.version>
37
<release-plugin.version>2.5.3</release-plugin.version>
38
+ <skipSigning>true</skipSigning>
39
</properties>
40
41
<scm>
@@ -159,6 +160,7 @@
159
160
<configuration>
161
<keyname>${gpg.keyname}</keyname>
162
<passphraseServerId>${gpg.keyname}</passphraseServerId>
163
+ <skip>${skipSigning}</skip>
164
</configuration>
165
</execution>
166
</executions>
@@ -185,4 +187,13 @@
185
187
</plugin>
186
188
</plugins>
189
</build>
190
+
191
+ <profiles>
192
+ <profile>
193
+ <id>signing</id>
194
+ <properties>
195
+ <skipSigning>false</skipSigning>
196
+ </properties>
197
+ </profile>
198
+ </profiles>
199
</project>
0 commit comments