|
55 | 55 | <plugin>
|
56 | 56 | <groupId>org.apache.maven.plugins</groupId>
|
57 | 57 | <artifactId>maven-compiler-plugin</artifactId>
|
58 |
| - <version>3.8.1</version> |
| 58 | + <version>3.11.0</version> |
59 | 59 | <configuration>
|
60 | 60 | <!-- Target Java LTS 11 -->
|
61 |
| - <release>11</release> |
| 61 | + <release>20</release> |
62 | 62 | </configuration>
|
63 | 63 | </plugin>
|
64 | 64 | <plugin>
|
65 | 65 | <artifactId>maven-surefire-plugin</artifactId>
|
66 |
| - <version>3.0.0-M8</version> |
| 66 | + <version>3.1.2</version> |
67 | 67 | </plugin>
|
68 | 68 | <plugin>
|
69 | 69 | <groupId>org.apache.maven.plugins</groupId>
|
70 | 70 | <artifactId>maven-jar-plugin</artifactId>
|
71 |
| - <version>3.1.2</version> |
| 71 | + <version>3.3.0</version> |
72 | 72 | <configuration>
|
73 | 73 | <archive>
|
74 | 74 | <manifestEntries>
|
|
84 | 84 | <!-- Recommended way to deploy to OSSRH -->
|
85 | 85 | <groupId>org.sonatype.plugins</groupId>
|
86 | 86 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
87 |
| - <version>1.6.12</version> |
| 87 | + <version>1.6.13</version> |
88 | 88 | <extensions>true</extensions>
|
89 | 89 | <configuration>
|
90 | 90 | <serverId>ossrh</serverId>
|
|
98 | 98 | <!-- Allow attaching Javadoc during releases -->
|
99 | 99 | <groupId>org.apache.maven.plugins</groupId>
|
100 | 100 | <artifactId>maven-javadoc-plugin</artifactId>
|
101 |
| - <version>3.1.1</version> |
| 101 | + <version>3.5.0</version> |
102 | 102 | <configuration>
|
103 | 103 | <!-- Turn off strict Javadoc checking -->
|
104 | 104 | <doclint>none</doclint>
|
|
130 | 130 | <!-- Include zipped source code in releases -->
|
131 | 131 | <groupId>org.apache.maven.plugins</groupId>
|
132 | 132 | <artifactId>maven-source-plugin</artifactId>
|
133 |
| - <version>3.0.1</version> |
| 133 | + <version>3.3.0</version> |
134 | 134 | <executions>
|
135 | 135 | <execution>
|
136 | 136 | <id>attach-sources</id>
|
|
144 | 144 | <plugin>
|
145 | 145 | <groupId>org.apache.maven.plugins</groupId>
|
146 | 146 | <artifactId>maven-gpg-plugin</artifactId>
|
147 |
| - <version>1.5</version> |
| 147 | + <version>3.1.0</version> |
148 | 148 | <executions>
|
149 | 149 | <execution>
|
150 | 150 | <id>sign-artifacts</id>
|
|
167 | 167 | <dependency>
|
168 | 168 | <groupId>org.junit</groupId>
|
169 | 169 | <artifactId>junit-bom</artifactId>
|
170 |
| - <version>5.9.2</version> |
| 170 | + <version>5.10.0</version> |
171 | 171 | <type>pom</type>
|
172 | 172 | <scope>import</scope>
|
173 | 173 | </dependency>
|
|
179 | 179 | <dependency>
|
180 | 180 | <groupId>com.esotericsoftware</groupId>
|
181 | 181 | <artifactId>kryo</artifactId>
|
182 |
| - <version>5.4.0</version> |
| 182 | + <version>5.5.0</version> |
183 | 183 | </dependency>
|
184 | 184 |
|
185 | 185 | <!-- Trove provides optimized map/set collections for primitive types (int, long, etc.) -->
|
|
194 | 194 | <dependency>
|
195 | 195 | <groupId>com.google.guava</groupId>
|
196 | 196 | <artifactId>guava</artifactId>
|
197 |
| - <version>31.1-jre</version> |
| 197 | + <version>32.1.2-jre</version> |
198 | 198 | </dependency>
|
199 | 199 | <!-- Logging API. -->
|
200 | 200 | <dependency>
|
201 | 201 | <groupId>org.slf4j</groupId>
|
202 | 202 | <artifactId>slf4j-api</artifactId>
|
203 |
| - <version>2.0.6</version> |
| 203 | + <version>2.0.7</version> |
204 | 204 | </dependency>
|
205 | 205 | <!-- Logging API implementation. -->
|
206 | 206 | <dependency>
|
207 | 207 | <groupId>ch.qos.logback</groupId>
|
208 | 208 | <artifactId>logback-classic</artifactId>
|
209 |
| - <version>1.4.5</version> |
| 209 | + <version>1.4.11</version> |
210 | 210 | </dependency>
|
211 | 211 | <!-- Junit is for unit testing. -->
|
212 | 212 | <dependency>
|
|
0 commit comments