Declare junit dependencies before kotlintest ones

This is for the scala modules. Apparently
in the other order, only kotlin tests are
run.
This commit is contained in:
Clément Fournier
2020-07-06 13:25:54 +02:00
parent c24efea939
commit 03d03440b4

View File

@ -112,6 +112,28 @@
<artifactId>commons-lang3</artifactId> <artifactId>commons-lang3</artifactId>
</dependency> </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-lang-test</artifactId>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>com.github.oowekyala.treeutils</groupId> <groupId>com.github.oowekyala.treeutils</groupId>
<artifactId>tree-matchers</artifactId> <artifactId>tree-matchers</artifactId>
@ -152,26 +174,5 @@
<artifactId>annotations</artifactId> <artifactId>annotations</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-lang-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
</project> </project>