Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
mmadson authored Jun 29, 2021
1 parent 0b0878c commit 49073d0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions innersource-repository-scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -397,4 +397,37 @@
</plugin>
</plugins>
</reporting>

<profiles>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${env.GPG_KEYID}</keyname>
<passphraseServerId>${env.GPG_KEYID}</passphraseServerId>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit 49073d0

Please sign in to comment.