Skip to content

Commit

Permalink
chore: fix pom for release (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanholtz authored Dec 1, 2021
1 parent 338e565 commit d9c77a3
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 @@ -27,38 +27,6 @@
<tag>4.3.7</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 @@ -116,6 +84,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 @@ -240,4 +216,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit d9c77a3

Please sign in to comment.