Skip to content

Commit 65c89d2

Browse files
Update pom gpg config
1 parent 1c72fa5 commit 65c89d2

2 files changed

Lines changed: 22 additions & 10 deletions

File tree

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,9 @@ hs_err_pid*
2727
*.iml
2828

2929
# Maven
30-
target/
30+
target/
31+
.classpath
32+
.project
33+
34+
.settings/
35+
.vscode/

pom.xml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -62,39 +62,39 @@
6262
<dependency>
6363
<groupId>org.mockito</groupId>
6464
<artifactId>mockito-core</artifactId>
65-
<version>2.22.0</version>
65+
<version>2.28.2</version>
6666
<scope>test</scope>
6767
</dependency>
6868
<dependency>
6969
<groupId>org.slf4j</groupId>
7070
<artifactId>slf4j-api</artifactId>
71-
<version>1.7.25</version>
71+
<version>1.7.30</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>org.slf4j</groupId>
7575
<artifactId>slf4j-simple</artifactId>
76-
<version>1.7.25</version>
76+
<version>1.7.30</version>
7777
<scope>test</scope>
7878
</dependency>
7979
<dependency>
8080
<groupId>org.apache.commons</groupId>
8181
<artifactId>commons-lang3</artifactId>
82-
<version>3.6</version>
82+
<version>3.11</version>
8383
</dependency>
8484
<dependency>
8585
<groupId>commons-io</groupId>
8686
<artifactId>commons-io</artifactId>
87-
<version>1.3.2</version>
87+
<version>2.8.0</version>
8888
</dependency>
8989
<dependency>
9090
<groupId>org.apache.httpcomponents</groupId>
9191
<artifactId>httpclient</artifactId>
92-
<version>4.5.2</version>
92+
<version>4.5.13</version>
9393
</dependency>
9494
<dependency>
9595
<groupId>com.fasterxml.jackson.core</groupId>
9696
<artifactId>jackson-databind</artifactId>
97-
<version>2.9.10.5</version>
97+
<version>2.11.3</version>
9898
</dependency>
9999
</dependencies>
100100

@@ -109,7 +109,7 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-source-plugin</artifactId>
112-
<version>3.0.1</version>
112+
<version>3.2.1</version>
113113
<executions>
114114
<execution>
115115
<id>attach-sources</id>
@@ -122,7 +122,7 @@
122122
<plugin>
123123
<groupId>org.apache.maven.plugins</groupId>
124124
<artifactId>maven-javadoc-plugin</artifactId>
125-
<version>3.0.1</version>
125+
<version>3.2.0</version>
126126
<executions>
127127
<execution>
128128
<id>attach-javadocs</id>
@@ -143,6 +143,13 @@
143143
<goals>
144144
<goal>sign</goal>
145145
</goals>
146+
<configuration>
147+
<!-- Prevent `gpg` from using pinentry programs -->
148+
<gpgArguments>
149+
<arg>--pinentry-mode</arg>
150+
<arg>loopback</arg>
151+
</gpgArguments>
152+
</configuration>
146153
</execution>
147154
</executions>
148155
</plugin>

0 commit comments

Comments
 (0)