|
4 | 4 | <modelVersion>4.0.0</modelVersion> |
5 | 5 | <groupId>com.exasol</groupId> |
6 | 6 | <artifactId>test-db-builder-java</artifactId> |
7 | | - <version>1.0.0</version> |
| 7 | + <version>1.0.1</version> |
8 | 8 | <name>Test Database Builder for Java</name> |
9 | 9 | <description>pom.xml</description> |
10 | 10 | <url>https://github.com/exasol/test-db-builder</url> |
11 | 11 | <properties> |
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
13 | 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
14 | 14 | <java.version>11</java.version> |
15 | | - <junit.version>5.6.1</junit.version> |
16 | | - <junit.platform.version>1.6.1</junit.platform.version> |
| 15 | + <junit.version>5.6.2</junit.version> |
| 16 | + <junit.platform.version>1.6.2</junit.platform.version> |
| 17 | + <test.containers.version>1.14.3</test.containers.version> |
17 | 18 | <surefire.and.failsafe.plugin.version>3.0.0-M4</surefire.and.failsafe.plugin.version> |
18 | 19 | <sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml |
19 | 20 | </sonar.coverage.jacoco.xmlReportPaths> |
|
86 | 87 | <dependency> |
87 | 88 | <groupId>com.exasol</groupId> |
88 | 89 | <artifactId>exasol-testcontainers</artifactId> |
89 | | - <version>2.0.1</version> |
| 90 | + <version>2.0.3</version> |
90 | 91 | <scope>test</scope> |
91 | 92 | </dependency> |
92 | 93 | <dependency> |
93 | 94 | <groupId>org.testcontainers</groupId> |
94 | 95 | <artifactId>junit-jupiter</artifactId> |
95 | | - <version>1.13.0</version> |
| 96 | + <version>${test.containers.version}</version> |
96 | 97 | <scope>test</scope> |
97 | 98 | </dependency> |
98 | 99 | <dependency> |
99 | 100 | <groupId>org.testcontainers</groupId> |
100 | 101 | <artifactId>mysql</artifactId> |
101 | | - <version>1.13.0</version> |
| 102 | + <version>${test.containers.version}</version> |
102 | 103 | <scope>test</scope> |
103 | 104 | </dependency> |
104 | 105 | <dependency> |
105 | 106 | <groupId>com.exasol</groupId> |
106 | 107 | <artifactId>hamcrest-resultset-matcher</artifactId> |
107 | | - <version>1.1.0</version> |
| 108 | + <version>1.1.1</version> |
108 | 109 | <scope>test</scope> |
109 | 110 | </dependency> |
110 | 111 | <dependency> |
|
286 | 287 | <version>3.1.0</version> |
287 | 288 | <executions> |
288 | 289 | <execution> |
289 | | - <id>audit-dependencies</id> |
290 | 290 | <phase>package</phase> |
291 | 291 | <goals> |
292 | 292 | <goal>audit</goal> |
293 | 293 | </goals> |
294 | 294 | </execution> |
295 | 295 | </executions> |
296 | 296 | </plugin> |
| 297 | + <plugin> |
| 298 | + <groupId>org.codehaus.mojo</groupId> |
| 299 | + <artifactId>versions-maven-plugin</artifactId> |
| 300 | + <version>2.7</version> |
| 301 | + <executions> |
| 302 | + <execution> |
| 303 | + <phase>package</phase> |
| 304 | + <goals> |
| 305 | + <goal>display-plugin-updates</goal> |
| 306 | + <goal>display-dependency-updates</goal> |
| 307 | + </goals> |
| 308 | + </execution> |
| 309 | + </executions> |
| 310 | + </plugin> |
| 311 | + <plugin> |
| 312 | + <groupId>org.apache.maven.plugins</groupId> |
| 313 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 314 | + <version>3.0.0-M3</version> |
| 315 | + <executions> |
| 316 | + <execution> |
| 317 | + <id>enforce-maven</id> |
| 318 | + <goals> |
| 319 | + <goal>enforce</goal> |
| 320 | + </goals> |
| 321 | + <configuration> |
| 322 | + <rules> |
| 323 | + <requireMavenVersion> |
| 324 | + <version>3.3.9</version> |
| 325 | + </requireMavenVersion> |
| 326 | + </rules> |
| 327 | + </configuration> |
| 328 | + </execution> |
| 329 | + </executions> |
| 330 | + </plugin> |
297 | 331 | </plugins> |
298 | 332 | <pluginManagement> |
299 | 333 | <plugins> |
|
0 commit comments