Skip to content

Commit 8783205

Browse files
committed
Group testing dependencies; use Junit specific kotlin-test
1 parent 941b5b8 commit 8783205

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,17 @@
9292
<version>${version.kotlin}</version>
9393
<scope>compile</scope>
9494
</dependency>
95+
96+
<!-- only for testing... -->
97+
<dependency>
98+
<groupId>junit</groupId>
99+
<artifactId>junit</artifactId>
100+
<version>${version.junit}</version>
101+
<scope>test</scope>
102+
</dependency>
95103
<dependency>
96104
<groupId>org.jetbrains.kotlin</groupId>
97-
<artifactId>kotlin-test</artifactId>
105+
<artifactId>kotlin-test-junit</artifactId>
98106
<version>${version.kotlin}</version>
99107
<scope>test</scope>
100108
</dependency>
@@ -103,14 +111,6 @@
103111
<artifactId>jackson-dataformat-xml</artifactId>
104112
<scope>test</scope>
105113
</dependency>
106-
107-
<!-- only for testing... -->
108-
<dependency>
109-
<groupId>junit</groupId>
110-
<artifactId>junit</artifactId>
111-
<version>${version.junit}</version>
112-
<scope>test</scope>
113-
</dependency>
114114
</dependencies>
115115

116116
<build>

0 commit comments

Comments
 (0)