Skip to content

Commit 1fb62da

Browse files
committedJan 16, 2024
Transition to JUnit 5, re #56
1 parent aab7824 commit 1fb62da

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed
 

‎pom.xml

+67
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,72 @@
107107
<version>3.30.2-GA</version>
108108
<scope>test</scope>
109109
</dependency>
110+
111+
<dependency>
112+
<artifactId>junit</artifactId>
113+
<groupId>junit</groupId>
114+
<scope>test</scope>
115+
</dependency>
116+
<dependency>
117+
<groupId>ch.qos.logback</groupId>
118+
<artifactId>logback-classic</artifactId>
119+
</dependency>
120+
<!--dependency>
121+
<groupId>org.junit.jupiter</groupId>
122+
<artifactId>junit-jupiter</artifactId>
123+
<scope>test</scope>
124+
</dependency>
125+
<dependency>
126+
<groupId>org.junit.jupiter</groupId>
127+
<artifactId>junit-jupiter-migrationsupport</artifactId>
128+
<scope>test</scope>
129+
</dependency>
130+
<dependency>
131+
<groupId>org.junit.vintage</groupId>
132+
<artifactId>junit-vintage-engine</artifactId>
133+
<scope>test</scope>
134+
</dependency-->
135+
<dependency>
136+
<groupId>org.mockito</groupId>
137+
<artifactId>mockito-core</artifactId>
138+
<scope>test</scope>
139+
</dependency>
110140
</dependencies>
141+
<dependencyManagement>
142+
<dependencies>
143+
<dependency>
144+
<groupId>ch.qos.logback</groupId>
145+
<artifactId>logback-classic</artifactId>
146+
<version>1.2.11</version> <!-- All versions higher than 1.2.11 don't compile for jdk8 (not even 1.2.12 is working due to google-cloud-logging-logback) -->
147+
</dependency>
148+
<dependency>
149+
<artifactId>junit</artifactId>
150+
<groupId>junit</groupId>
151+
<version>4.13.2</version>
152+
</dependency>
153+
<dependency>
154+
<groupId>org.junit.jupiter</groupId>
155+
<artifactId>junit-jupiter</artifactId>
156+
<version>5.10.1</version>
157+
<scope>test</scope>
158+
</dependency>
159+
<dependency>
160+
<groupId>org.junit.jupiter</groupId>
161+
<artifactId>junit-jupiter-migrationsupport</artifactId>
162+
<version>5.10.1</version>
163+
<scope>test</scope>
164+
</dependency>
165+
<dependency>
166+
<groupId>org.junit.vintage</groupId>
167+
<artifactId>junit-vintage-engine</artifactId>
168+
<version>5.10.1</version>
169+
<scope>test</scope>
170+
</dependency>
171+
<dependency>
172+
<groupId>org.mockito</groupId>
173+
<artifactId>mockito-core</artifactId>
174+
<version>4.11.0</version> <!-- All versions of v5+ don't run for jdk8 -->
175+
</dependency>
176+
</dependencies>
177+
</dependencyManagement>
111178
</project>

0 commit comments

Comments
 (0)