Skip to content

Commit

Permalink
chore: fix pom for release (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanholtz authored Dec 1, 2021
1 parent c655b12 commit 230dfc4
Showing 1 changed file with 9 additions and 33 deletions.
42 changes: 9 additions & 33 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,38 +29,6 @@
<tag>4.8.0</tag>
</scm>
<profiles>
<profile>
<id>gpg</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphrase>${gpg.passphrase}</passphrase>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<activation>
Expand Down Expand Up @@ -118,6 +86,14 @@
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphrase>${gpg.passphrase}</passphrase>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
Expand Down Expand Up @@ -330,4 +306,4 @@
</plugin>
</plugins>
</reporting>
</project>
</project>

0 comments on commit 230dfc4

Please sign in to comment.