|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 | <modelVersion>4.0.0</modelVersion>
|
4 | 4 | <artifactId>test-db-builder-java</artifactId>
|
5 |
| - <version>3.6.0</version> |
| 5 | + <version>3.6.1</version> |
6 | 6 | <name>Test Database Builder for Java</name>
|
7 | 7 | <description>pom.xml</description>
|
8 | 8 | <url>https://github.com/exasol/test-db-builder-java/</url>
|
9 | 9 | <properties>
|
10 |
| - <test.containers.version>1.20.1</test.containers.version> |
| 10 | + <test.containers.version>1.20.6</test.containers.version> |
11 | 11 | </properties>
|
12 | 12 | <dependencies>
|
13 | 13 | <dependency>
|
14 | 14 | <groupId>com.exasol</groupId>
|
15 | 15 | <artifactId>exasol-jdbc</artifactId>
|
16 |
| - <version>24.1.2</version> |
| 16 | + <version>25.2.2</version> |
17 | 17 | <scope>test</scope>
|
18 | 18 | </dependency>
|
19 | 19 | <dependency>
|
20 | 20 | <groupId>com.mysql</groupId>
|
21 | 21 | <artifactId>mysql-connector-j</artifactId>
|
22 |
| - <version>9.0.0</version> |
| 22 | + <version>9.2.0</version> |
23 | 23 | <scope>test</scope>
|
24 | 24 | </dependency>
|
25 | 25 | <dependency>
|
26 | 26 | <!-- Upgrade transitive dependency of mysql-connector-j to fix CVE-2024-7254 -->
|
27 | 27 | <groupId>com.google.protobuf</groupId>
|
28 | 28 | <artifactId>protobuf-java</artifactId>
|
29 |
| - <version>4.28.2</version> |
| 29 | + <version>4.30.1</version> |
30 | 30 | <scope>test</scope>
|
31 | 31 | </dependency>
|
32 | 32 | <dependency>
|
33 | 33 | <groupId>org.postgresql</groupId>
|
34 | 34 | <artifactId>postgresql</artifactId>
|
35 |
| - <version>42.7.4</version> |
| 35 | + <version>42.7.5</version> |
36 | 36 | <scope>test</scope>
|
37 | 37 | </dependency>
|
38 | 38 | <dependency>
|
39 | 39 | <groupId>com.oracle.database.jdbc</groupId>
|
40 | 40 | <artifactId>ojdbc11</artifactId>
|
41 |
| - <version>23.5.0.24.07</version> |
| 41 | + <version>23.7.0.25.01</version> |
42 | 42 | <scope>test</scope>
|
43 | 43 | </dependency>
|
44 | 44 | <dependency>
|
45 | 45 | <groupId>org.junit-pioneer</groupId>
|
46 | 46 | <artifactId>junit-pioneer</artifactId>
|
47 |
| - <version>2.2.0</version> |
| 47 | + <version>2.3.0</version> |
48 | 48 | <scope>test</scope>
|
49 | 49 | </dependency>
|
50 | 50 | <dependency>
|
|
55 | 55 | <dependency>
|
56 | 56 | <groupId>com.exasol</groupId>
|
57 | 57 | <artifactId>exasol-testcontainers</artifactId>
|
58 |
| - <version>7.1.1</version> |
| 58 | + <version>7.1.4</version> |
59 | 59 | <scope>test</scope>
|
60 | 60 | </dependency>
|
61 | 61 | <dependency>
|
|
97 | 97 | <dependency>
|
98 | 98 | <groupId>org.junit.jupiter</groupId>
|
99 | 99 | <artifactId>junit-jupiter-api</artifactId>
|
100 |
| - <version>5.11.0</version> |
| 100 | + <version>5.12.1</version> |
101 | 101 | <scope>test</scope>
|
102 | 102 | </dependency>
|
103 | 103 | <dependency>
|
104 | 104 | <groupId>org.junit.jupiter</groupId>
|
105 | 105 | <artifactId>junit-jupiter-engine</artifactId>
|
106 |
| - <version>5.11.0</version> |
| 106 | + <version>5.12.1</version> |
107 | 107 | <scope>test</scope>
|
108 | 108 | </dependency>
|
109 | 109 | <dependency>
|
110 | 110 | <groupId>org.mockito</groupId>
|
111 | 111 | <artifactId>mockito-junit-jupiter</artifactId>
|
112 |
| - <version>5.13.0</version> |
| 112 | + <version>5.16.1</version> |
113 | 113 | <scope>test</scope>
|
114 | 114 | </dependency>
|
115 | 115 | <dependency>
|
116 | 116 | <groupId>nl.jqno.equalsverifier</groupId>
|
117 | 117 | <artifactId>equalsverifier</artifactId>
|
118 |
| - <version>3.16.2</version> |
| 118 | + <version>3.19.2</version> |
119 | 119 | <scope>test</scope>
|
120 | 120 | </dependency>
|
121 | 121 | <dependency>
|
|
127 | 127 | <!-- Enable log output for integration tests -->
|
128 | 128 | <groupId>org.slf4j</groupId>
|
129 | 129 | <artifactId>slf4j-jdk14</artifactId>
|
130 |
| - <version>2.0.16</version> |
| 130 | + <version>2.0.17</version> |
131 | 131 | <scope>test</scope>
|
132 | 132 | </dependency>
|
133 | 133 | </dependencies>
|
|
152 | 152 | <plugin>
|
153 | 153 | <groupId>com.exasol</groupId>
|
154 | 154 | <artifactId>project-keeper-maven-plugin</artifactId>
|
155 |
| - <version>4.3.3</version> |
| 155 | + <version>5.0.0</version> |
156 | 156 | <executions>
|
157 | 157 | <execution>
|
158 | 158 | <goals>
|
|
176 | 176 | <parent>
|
177 | 177 | <artifactId>test-db-builder-java-generated-parent</artifactId>
|
178 | 178 | <groupId>com.exasol</groupId>
|
179 |
| - <version>3.6.0</version> |
| 179 | + <version>3.6.1</version> |
180 | 180 | <relativePath>pk_generated_parent.pom</relativePath>
|
181 | 181 | </parent>
|
182 | 182 | </project>
|
0 commit comments