Skip to content

Commit

Permalink
Copy sonatype-oss-release configuration from Guava to failureaccess.
Browse files Browse the repository at this point in the history
This prevents a `gpg: signing failed: Timeout` error during release.

This lets us continue our progress on #6776.

RELNOTES=n/a
PiperOrigin-RevId: 573995200
  • Loading branch information
cpovirk authored and Google Java Core Libraries committed Oct 17, 2023
1 parent 280b5d2 commit 76b3b3f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions futures/failureaccess/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,26 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 76b3b3f

Please sign in to comment.