We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5764356 commit 4f6b183Copy full SHA for 4f6b183
1 file changed
pom.xml
@@ -245,6 +245,36 @@
245
</plugins>
246
</build>
247
<profiles>
248
+ <profile>
249
+ <id>sign-release-artifacts</id>
250
+ <activation>
251
+ <property>
252
+ <name>performRelease</name>
253
+ <value>true</value>
254
+ </property>
255
+ </activation>
256
+ <build>
257
+ <plugins>
258
+ <plugin>
259
+ <groupId>org.apache.maven.plugins</groupId>
260
+ <artifactId>maven-gpg-plugin</artifactId>
261
+ <version>1.4</version>
262
+ <executions>
263
+ <execution>
264
+ <id>sign-artifacts</id>
265
+ <phase>verify</phase>
266
+ <goals>
267
+ <goal>sign</goal>
268
+ </goals>
269
+ <configuration>
270
+ <keyname>f22e0543</keyname>
271
+ </configuration>
272
+ </execution>
273
+ </executions>
274
+ </plugin>
275
+ </plugins>
276
+ </build>
277
+ </profile>
278
<profile>
279
<id>doclint-java8-disable</id>
280
<activation>
0 commit comments