Skip to content

Commit d8defe7

Browse files
Bump dependencies & plugins
1 parent addaf60 commit d8defe7

File tree

1 file changed

+33
-9
lines changed

1 file changed

+33
-9
lines changed

pom.xml

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,20 @@
5656
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
5757
</properties>
5858

59+
<prerequisites>
60+
<maven>3.2.5</maven>
61+
</prerequisites>
62+
5963
<dependencies>
6064
<dependency>
6165
<groupId>junit</groupId>
6266
<artifactId>junit</artifactId>
63-
<version>4.13.1</version>
67+
<version>4.13.2</version>
6468
</dependency>
6569
<dependency>
6670
<groupId>org.mockito</groupId>
6771
<artifactId>mockito-core</artifactId>
68-
<version>2.28.2</version>
72+
<version>4.6.1</version>
6973
<scope>test</scope>
7074
</dependency>
7175
<dependency>
@@ -76,13 +80,13 @@
7680
<dependency>
7781
<groupId>org.slf4j</groupId>
7882
<artifactId>slf4j-simple</artifactId>
79-
<version>1.7.30</version>
83+
<version>2.0.0-alpha7</version>
8084
<scope>test</scope>
8185
</dependency>
8286
<dependency>
8387
<groupId>org.apache.commons</groupId>
8488
<artifactId>commons-lang3</artifactId>
85-
<version>3.11</version>
89+
<version>3.12.0</version>
8690
</dependency>
8791
<dependency>
8892
<groupId>org.apache.httpcomponents</groupId>
@@ -92,7 +96,7 @@
9296
<dependency>
9397
<groupId>com.fasterxml.jackson.core</groupId>
9498
<artifactId>jackson-databind</artifactId>
95-
<version>2.11.3</version>
99+
<version>2.13.3</version>
96100
</dependency>
97101
</dependencies>
98102

@@ -104,6 +108,26 @@
104108
</resource>
105109
</resources>
106110
<plugins>
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-enforcer-plugin</artifactId>
114+
<version>3.1.0</version>
115+
<executions>
116+
<execution>
117+
<id>enforce-maven</id>
118+
<goals>
119+
<goal>enforce</goal>
120+
</goals>
121+
<configuration>
122+
<rules>
123+
<requireMavenVersion>
124+
<version>3.2.5</version>
125+
</requireMavenVersion>
126+
</rules>
127+
</configuration>
128+
</execution>
129+
</executions>
130+
</plugin>
107131
<plugin>
108132
<groupId>org.apache.maven.plugins</groupId>
109133
<artifactId>maven-source-plugin</artifactId>
@@ -120,7 +144,7 @@
120144
<plugin>
121145
<groupId>org.apache.maven.plugins</groupId>
122146
<artifactId>maven-javadoc-plugin</artifactId>
123-
<version>3.2.0</version>
147+
<version>3.4.0</version>
124148
<executions>
125149
<execution>
126150
<id>attach-javadocs</id>
@@ -133,7 +157,7 @@
133157
<plugin>
134158
<groupId>org.apache.maven.plugins</groupId>
135159
<artifactId>maven-gpg-plugin</artifactId>
136-
<version>1.6</version>
160+
<version>3.0.1</version>
137161
<executions>
138162
<execution>
139163
<id>sign-artifacts</id>
@@ -154,7 +178,7 @@
154178
<plugin>
155179
<groupId>org.sonatype.plugins</groupId>
156180
<artifactId>nexus-staging-maven-plugin</artifactId>
157-
<version>1.6.8</version>
181+
<version>1.6.13</version>
158182
<extensions>true</extensions>
159183
<configuration>
160184
<serverId>ossrh</serverId>
@@ -165,7 +189,7 @@
165189
<plugin>
166190
<groupId>org.apache.maven.plugins</groupId>
167191
<artifactId>maven-release-plugin</artifactId>
168-
<version>2.5.3</version>
192+
<version>3.0.0-M6</version>
169193
<configuration>
170194
<tagNameFormat>@{project.version}</tagNameFormat>
171195
</configuration>

0 commit comments

Comments
 (0)