Skip to content

Commit aa999ea

Browse files
authored
Merge pull request #26 from rcardin/24-unit-tests-are-not-running
Unit tests are not running
2 parents 653e10c + f462164 commit aa999ea

File tree

1 file changed

+10
-32
lines changed

1 file changed

+10
-32
lines changed

pom.xml

Lines changed: 10 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
<assertj-core.version>3.24.2</assertj-core.version>
3030
<kotlin-stdlib.version>1.9.10</kotlin-stdlib.version>
3131
<arrow-core.version>1.2.1</arrow-core.version>
32-
<junit-bom.version>5.10.0</junit-bom.version>
33-
<junit.version>4.13.2</junit.version>
32+
<junit-jupiter.version>5.10.0</junit-jupiter.version>
3433
<dokka-maven-plugin.version>1.9.0</dokka-maven-plugin.version>
34+
<maven-surefire-plugin.version>3.2.1</maven-surefire-plugin.version>
3535
</properties>
3636

3737
<url>https://github.com/rcardin/assertj-arrow-core</url>
@@ -49,24 +49,6 @@
4949
<url>https://github.com/rcardin/assertj-arrow-core/issues</url>
5050
</issueManagement>
5151

52-
<dependencyManagement>
53-
<dependencies>
54-
<dependency>
55-
<groupId>org.junit</groupId>
56-
<artifactId>junit-bom</artifactId>
57-
<version>${junit-bom.version}</version>
58-
<type>pom</type>
59-
<scope>import</scope>
60-
</dependency>
61-
<dependency>
62-
<groupId>junit</groupId>
63-
<artifactId>junit</artifactId>
64-
<version>${junit.version}</version>
65-
<scope>test</scope>
66-
</dependency>
67-
</dependencies>
68-
</dependencyManagement>
69-
7052
<dependencies>
7153
<dependency>
7254
<groupId>org.assertj</groupId>
@@ -87,24 +69,19 @@
8769
<dependency>
8870
<groupId>org.junit.jupiter</groupId>
8971
<artifactId>junit-jupiter-api</artifactId>
90-
<scope>provided</scope>
91-
<optional>true</optional>
72+
<version>${junit-jupiter.version}</version>
73+
<scope>test</scope>
9274
</dependency>
9375
<dependency>
9476
<groupId>org.junit.jupiter</groupId>
95-
<artifactId>junit-jupiter</artifactId>
77+
<artifactId>junit-jupiter-engine</artifactId>
78+
<version>${junit-jupiter.version}</version>
9679
<scope>test</scope>
9780
</dependency>
9881
<dependency>
99-
<groupId>junit</groupId>
100-
<artifactId>junit</artifactId>
101-
<scope>provided</scope>
102-
<optional>true</optional>
103-
</dependency>
104-
<dependency>
105-
<groupId>org.mockito</groupId>
106-
<artifactId>mockito-core</artifactId>
107-
<version>5.6.0</version>
82+
<groupId>org.jetbrains.kotlin</groupId>
83+
<artifactId>kotlin-test</artifactId>
84+
<version>${kotlin-stdlib.version}</version>
10885
<scope>test</scope>
10986
</dependency>
11087
</dependencies>
@@ -176,6 +153,7 @@
176153
<plugin>
177154
<groupId>org.apache.maven.plugins</groupId>
178155
<artifactId>maven-surefire-plugin</artifactId>
156+
<version>${maven-surefire-plugin.version}</version>
179157
</plugin>
180158
</plugins>
181159
</build>

0 commit comments

Comments
 (0)