|
35 | 35 | <maven.compiler.target>${java.version}</maven.compiler.target> |
36 | 36 | <maven.compiler.testTarget>${java.version}</maven.compiler.testTarget> |
37 | 37 | <maven.compiler.testSource>${java.version}</maven.compiler.testSource> |
38 | | - <junit.jupiter.version>5.1.1</junit.jupiter.version> |
39 | | - <junit.platform.version>1.1.1</junit.platform.version> |
40 | | - <clirr.comparisonVersion>1.0.0</clirr.comparisonVersion> |
| 38 | + <junit.jupiter.version>5.2.0</junit.jupiter.version> |
| 39 | + <junit.platform.version>1.2.0</junit.platform.version> |
| 40 | + <clirr.comparisonVersion>1.1.0</clirr.comparisonVersion> |
41 | 41 | </properties> |
42 | 42 |
|
43 | 43 | <reporting> |
|
88 | 88 | </execution> |
89 | 89 | </executions> |
90 | 90 | </plugin> |
| 91 | + <plugin> |
| 92 | + <groupId>org.apache.maven.plugins</groupId> |
| 93 | + <artifactId>maven-surefire-plugin</artifactId> |
| 94 | + <dependencies> |
| 95 | + <dependency> |
| 96 | + <groupId>org.junit.platform</groupId> |
| 97 | + <artifactId>junit-platform-surefire-provider</artifactId> |
| 98 | + <version>${junit.platform.version}</version> |
| 99 | + </dependency> |
| 100 | + </dependencies> |
| 101 | + </plugin> |
91 | 102 | </plugins> |
92 | 103 | </build> |
93 | 104 |
|
|
106 | 117 | </dependency> |
107 | 118 | <dependency> |
108 | 119 | <groupId>org.junit.platform</groupId> |
109 | | - <artifactId>junit-platform-runner</artifactId> |
| 120 | + <artifactId>junit-platform-launcher</artifactId> |
110 | 121 | <version>${junit.platform.version}</version> |
111 | 122 | <scope>test</scope> |
112 | 123 | </dependency> |
113 | | - <!-- added to support running JUnit5 tests with JUnit4. Remove when Infinitest catches up. --> |
114 | | - <!-- Note: DO NOT make this the org.junit.vintage support. All the tests are written with JUnit5. |
115 | | - Once Infinitest is ready we can remove this dependency and the corresponding @RunWith annotations |
116 | | - --> |
117 | | - <dependency> |
118 | | - <groupId>junit</groupId> |
119 | | - <artifactId>junit</artifactId> |
120 | | - <version>4.12</version> |
121 | | - <scope>test</scope> |
122 | | - </dependency> |
123 | 124 |
|
124 | 125 | <dependency> |
125 | 126 | <groupId>org.assertj</groupId> |
126 | 127 | <artifactId>assertj-core</artifactId> |
127 | | - <version>3.9.1</version> |
| 128 | + <version>3.10.0</version> |
128 | 129 | <scope>test</scope> |
129 | 130 | </dependency> |
130 | 131 | <dependency> |
|
136 | 137 | <dependency> |
137 | 138 | <groupId>org.hsqldb</groupId> |
138 | 139 | <artifactId>hsqldb</artifactId> |
139 | | - <version>2.4.0</version> |
| 140 | + <version>2.4.1</version> |
140 | 141 | <scope>test</scope> |
141 | 142 | </dependency> |
142 | 143 | <dependency> |
143 | 144 | <groupId>org.springframework</groupId> |
144 | 145 | <artifactId>spring-jdbc</artifactId> |
145 | | - <version>5.0.5.RELEASE</version> |
| 146 | + <version>5.0.6.RELEASE</version> |
146 | 147 | <scope>test</scope> |
147 | 148 | </dependency> |
148 | 149 | <dependency> |
|
0 commit comments