|
66 | 66 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
67 | 67 | <java.version>11</java.version> |
68 | 68 |
|
69 | | - <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version> |
70 | | - <maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version> |
71 | | - <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version> |
72 | | - <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
73 | | - <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version> |
74 | | - <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version> |
75 | | - <maven-release-plugin.version>3.0.0</maven-release-plugin.version> |
76 | | - <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> |
| 69 | + <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> |
| 70 | + <maven-surefire-plugin.version>3.5.0</maven-surefire-plugin.version> |
| 71 | + <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> |
| 72 | + <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
| 73 | + <maven-javadoc-plugin.version>3.10.0</maven-javadoc-plugin.version> |
| 74 | + <maven-gpg-plugin.version>3.2.6</maven-gpg-plugin.version> |
| 75 | + <maven-release-plugin.version>3.1.1</maven-release-plugin.version> |
| 76 | + <maven-jar-plugin.version>3.4.2</maven-jar-plugin.version> |
| 77 | + <maven-dependency-plugin.version>3.8.0</maven-dependency-plugin.version> |
| 78 | + <maven-clean-plugin.version>3.4.0</maven-clean-plugin.version> |
| 79 | + <versions-maven-plugin.version>2.17.1</versions-maven-plugin.version> |
| 80 | + <maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version> |
77 | 81 | <!-- reduce the chattiness of output - see profile of same name below --> |
78 | 82 | <inhibitConsoleOutput>false</inhibitConsoleOutput> |
79 | | - <maven-dependency-plugin.version>3.6.0</maven-dependency-plugin.version> |
80 | | - <maven-clean-plugin.version>3.4.0</maven-clean-plugin.version> |
81 | 83 | </properties> |
82 | 84 |
|
83 | 85 | <build> |
|
118 | 120 | </archive> |
119 | 121 | </configuration> |
120 | 122 | </plugin> |
| 123 | + <plugin> |
| 124 | + <groupId>org.codehaus.mojo</groupId> |
| 125 | + <artifactId>versions-maven-plugin</artifactId> |
| 126 | + <version>${versions-maven-plugin.version}</version> |
| 127 | + </plugin> |
121 | 128 | </plugins> |
122 | 129 | </pluginManagement> |
123 | 130 |
|
|
159 | 166 | </filesets> |
160 | 167 | </configuration> |
161 | 168 | </plugin> |
162 | | - |
| 169 | + <plugin> |
| 170 | + <groupId>org.apache.maven.plugins</groupId> |
| 171 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 172 | + <version>${maven-enforcer-plugin.version}</version> |
| 173 | + <executions> |
| 174 | + <execution> |
| 175 | + <id>enforce-maven</id> |
| 176 | + <goals> |
| 177 | + <goal>enforce</goal> |
| 178 | + </goals> |
| 179 | + <configuration> |
| 180 | + <rules> |
| 181 | + <!-- for some plugins --> |
| 182 | + <requireMavenVersion> |
| 183 | + <version>3.6.3</version> |
| 184 | + </requireMavenVersion> |
| 185 | + </rules> |
| 186 | + </configuration> |
| 187 | + </execution> |
| 188 | + </executions> |
| 189 | + </plugin> |
163 | 190 | </plugins> |
164 | 191 | </build> |
165 | 192 |
|
|
171 | 198 | <dependency> |
172 | 199 | <groupId>org.slf4j</groupId> |
173 | 200 | <artifactId>slf4j-api</artifactId> |
174 | | - <version>2.0.12</version> |
175 | 201 | </dependency> |
176 | 202 | <dependency> |
177 | 203 | <groupId>ch.qos.logback</groupId> |
|
184 | 210 | <dependency> |
185 | 211 | <groupId>org.jetbrains</groupId> |
186 | 212 | <artifactId>annotations</artifactId> |
187 | | - <version>24.0.1</version> |
| 213 | + <version>24.1.0</version> |
188 | 214 | </dependency> |
189 | 215 | <!-- for android and Java7 apparently --> |
190 | 216 | <dependency> |
|
200 | 226 | <dependency> |
201 | 227 | <groupId>org.slf4j</groupId> |
202 | 228 | <artifactId>slf4j-api</artifactId> |
203 | | - <version>2.0.5</version> |
| 229 | + <version>2.0.12</version> |
204 | 230 | </dependency> |
205 | 231 | <!-- if you want to use logback versions from 1.2 on you need to use |
206 | 232 | SLF4J > 2.0, this was kind of hard to find out. --> |
|
212 | 238 | <dependency> |
213 | 239 | <groupId>commons-codec</groupId> |
214 | 240 | <artifactId>commons-codec</artifactId> |
215 | | - <version>1.15</version> |
| 241 | + <version>1.17.1</version> |
216 | 242 | </dependency> |
217 | 243 | <dependency> |
218 | 244 | <groupId>junit</groupId> |
|
0 commit comments