|
5 | 5 | <name>baseCode</name> |
6 | 6 | <groupId>baseCode</groupId> |
7 | 7 | <artifactId>baseCode</artifactId> |
8 | | - <version>1.1.2</version> |
| 8 | + <version>1.1.3</version> |
9 | 9 | <inceptionYear>2003</inceptionYear> |
10 | 10 | <description> |
11 | 11 | <![CDATA[Data structures, math and statistics tools, and utilities that are often needed across projects.]]> |
|
49 | 49 | <dependency> |
50 | 50 | <groupId>org.apache.poi</groupId> |
51 | 51 | <artifactId>poi</artifactId> |
52 | | - <version>5.1.0</version> |
| 52 | + <version>5.2.2</version> |
53 | 53 | </dependency> |
54 | 54 | <dependency> |
55 | 55 | <groupId>colt</groupId> |
|
71 | 71 | <dependency> |
72 | 72 | <groupId>org.apache.commons</groupId> |
73 | 73 | <artifactId>commons-configuration2</artifactId> |
74 | | - <version>2.7</version> |
| 74 | + <version>2.8.0</version> |
75 | 75 | </dependency> |
76 | 76 | <dependency> |
77 | 77 | <groupId>org.apache.commons</groupId> |
|
93 | 93 | <dependency> |
94 | 94 | <groupId>org.apache.httpcomponents</groupId> |
95 | 95 | <artifactId>httpcore</artifactId> |
96 | | - <version>4.4.14</version> |
| 96 | + <version>4.4.15</version> |
97 | 97 | </dependency> |
98 | 98 | <dependency> |
99 | 99 | <groupId>org.apache.httpcomponents</groupId> |
|
142 | 142 | <dependency> |
143 | 143 | <groupId>org.slf4j</groupId> |
144 | 144 | <artifactId>slf4j-api</artifactId> |
145 | | - <version>1.7.32</version> |
| 145 | + <version>1.7.36</version> |
146 | 146 | </dependency> |
147 | 147 |
|
148 | 148 | <!-- Jena --> |
|
218 | 218 | <dependency> |
219 | 219 | <groupId>xml-apis</groupId> |
220 | 220 | <artifactId>xml-apis</artifactId> |
| 221 | + <!--suppress MavenPackageUpdate --> |
221 | 222 | <version>1.4.01</version> |
222 | 223 | </dependency> |
223 | 224 | <dependency> |
224 | 225 | <groupId>com.opencsv</groupId> |
225 | 226 | <artifactId>opencsv</artifactId> |
226 | | - <version>5.5.2</version> |
| 227 | + <version>5.6</version> |
227 | 228 | </dependency> |
228 | 229 |
|
229 | 230 | <!-- Testing utilities --> |
|
233 | 234 | <version>4.13.2</version> |
234 | 235 | <scope>test</scope> |
235 | 236 | </dependency> |
| 237 | + <dependency> |
| 238 | + <groupId>org.mockito</groupId> |
| 239 | + <artifactId>mockito-core</artifactId> |
| 240 | + <version>4.6.1</version> |
| 241 | + <scope>test</scope> |
| 242 | + </dependency> |
| 243 | + <dependency> |
| 244 | + <groupId>org.apache.logging.log4j</groupId> |
| 245 | + <artifactId>log4j-core</artifactId> |
| 246 | + <version>2.17.2</version> |
| 247 | + <scope>test</scope> |
| 248 | + </dependency> |
| 249 | + <dependency> |
| 250 | + <groupId>org.apache.logging.log4j</groupId> |
| 251 | + <artifactId>log4j-slf4j-impl</artifactId> |
| 252 | + <version>2.17.2</version> |
| 253 | + <scope>test</scope> |
| 254 | + </dependency> |
236 | 255 | </dependencies> |
237 | 256 | <build> |
238 | 257 | <directory>target</directory> |
|
267 | 286 | </testResource> |
268 | 287 | </testResources> |
269 | 288 | <plugins> |
| 289 | + <plugin> |
| 290 | + <groupId>org.apache.maven.plugins</groupId> |
| 291 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 292 | + <version>1.4.1</version> |
| 293 | + <executions> |
| 294 | + <execution> |
| 295 | + <id>enforce-maven</id> |
| 296 | + <goals> |
| 297 | + <goal>enforce</goal> |
| 298 | + </goals> |
| 299 | + <configuration> |
| 300 | + <rules> |
| 301 | + <requireMavenVersion> |
| 302 | + <version>[3.0.5,)</version> |
| 303 | + </requireMavenVersion> |
| 304 | + </rules> |
| 305 | + </configuration> |
| 306 | + </execution> |
| 307 | + </executions> |
| 308 | + </plugin> |
270 | 309 | <plugin> |
271 | 310 | <groupId>com.amashchenko.maven.plugin</groupId> |
272 | 311 | <artifactId>gitflow-maven-plugin</artifactId> |
273 | | - <version>1.6.0</version> |
| 312 | + <version>1.16.0</version> |
274 | 313 | <configuration> |
275 | 314 | <!-- Do not push to remote --> |
276 | 315 | <pushRemote>false</pushRemote> |
|
280 | 319 | <productionBranch>master</productionBranch> |
281 | 320 | <developmentBranch>development</developmentBranch> |
282 | 321 | <releaseBranchPrefix>release-</releaseBranchPrefix> |
283 | | - <versionTagPrefix></versionTagPrefix> |
| 322 | + <versionTagPrefix/> |
284 | 323 | <origin>origin</origin> |
285 | 324 | <!-- Unused for releasing --> |
286 | 325 | <featureBranchPrefix>feature-</featureBranchPrefix> |
|
363 | 402 | <plugin> |
364 | 403 | <groupId>org.apache.maven.plugins</groupId> |
365 | 404 | <artifactId>maven-javadoc-plugin</artifactId> |
366 | | - <version>3.3.0</version> |
| 405 | + <version>3.3.1</version> |
367 | 406 | <configuration> |
368 | 407 | <quiet>true</quiet> |
369 | 408 | <source>8</source> |
|
0 commit comments