Skip to content

Commit 9ae5820

Browse files
committed
Fix Github action mvn deploy
1 parent e9a110f commit 9ae5820

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

script/closure-library-release/google-closure-library-third-party.pom.template

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,22 @@
1616

1717
<url>http://code.google.com/p/closure-library/</url>
1818

19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>org.apache.maven.plugins</groupId>
23+
<artifactId>maven-gpg-plugin</artifactId>
24+
<version>3.1.0</version>
25+
<configuration>
26+
<gpgArguments>
27+
<arg>--pinentry-mode</arg>
28+
<arg>loopback</arg>
29+
</gpgArguments>
30+
</configuration>
31+
</plugin>
32+
</plugins>
33+
</build>
34+
1935
<description>
2036
The Google Closure Library is a collection of JavaScript code
2137
designed for use with the Google Closure JavaScript Compiler.
@@ -117,7 +133,7 @@
117133
<plugin>
118134
<groupId>org.sonatype.plugins</groupId>
119135
<artifactId>nexus-staging-maven-plugin</artifactId>
120-
<version>1.4.4</version>
136+
<version>1.6.5</version>
121137
<executions>
122138
<execution>
123139
<id>default-deploy</id>

script/closure-library-release/google-closure-library.pom.template

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,22 @@
2424
team at http://clojure.org/
2525
</description>
2626

27+
<build>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-gpg-plugin</artifactId>
32+
<version>3.1.0</version>
33+
<configuration>
34+
<gpgArguments>
35+
<arg>--pinentry-mode</arg>
36+
<arg>loopback</arg>
37+
</gpgArguments>
38+
</configuration>
39+
</plugin>
40+
</plugins>
41+
</build>
42+
2743
<dependencies>
2844
<dependency>
2945
<groupId>org.clojure</groupId>
@@ -115,7 +131,7 @@
115131
<plugin>
116132
<groupId>org.sonatype.plugins</groupId>
117133
<artifactId>nexus-staging-maven-plugin</artifactId>
118-
<version>1.4.4</version>
134+
<version>1.6.5</version>
119135
<executions>
120136
<execution>
121137
<id>default-deploy</id>

0 commit comments

Comments
 (0)