Skip to content

Commit

Permalink
Fix for poms
Browse files Browse the repository at this point in the history
  • Loading branch information
scottslewis committed Sep 10, 2020
1 parent b6db249 commit bff5128
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
21 changes: 20 additions & 1 deletion generator/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>grpc-osgi-generator</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
<build>
<extensions>
<extension>
Expand Down Expand Up @@ -37,6 +37,25 @@
<source>8</source>
</configuration>
</plugin>
<plugin>
<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>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,16 @@
<arg>loopback</arg>
</gpgArguments>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>

</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
Expand Down

0 comments on commit bff5128

Please sign in to comment.