Add kotlin-test-junit5 dependency

pull/48/head
Graham 4 years ago
parent 879e3152fc
commit 4e4d2daa1e
  1. 2
      pom.xml
  2. 5
      util/pom.xml

@ -5,7 +5,7 @@
<parent>
<groupId>dev.openrs2</groupId>
<artifactId>openrs2-parent</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</parent>
<artifactId>openrs2</artifactId>

@ -27,9 +27,14 @@
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
<!-- XXX(gpe): must be before kotlin-test-junit5 so we get the correct version of junit-jupiter-api (ugh!) -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit5</artifactId>
</dependency>
</dependencies>
</project>

Loading…
Cancel
Save