Skip to content

Commit 4f6b183

Browse files
committed
1 parent 5764356 commit 4f6b183

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,36 @@
245245
</plugins>
246246
</build>
247247
<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>
248278
<profile>
249279
<id>doclint-java8-disable</id>
250280
<activation>

0 commit comments

Comments
 (0)