Skip to content

Commit

Permalink
add missing JUnit dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
larsk21 committed Nov 21, 2024
1 parent f59ee4b commit 6d6ebf2
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,23 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.1</version>
<version>5.11.3</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.11.3</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>1.11.3</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.11.3</version>
</dependency>
<dependency>
<groupId>sdq-commons</groupId>
<artifactId>edu.kit.ipd.sdq.commons.util.emf</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions views/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,16 @@
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>sdq-commons</groupId>
<artifactId>edu.kit.ipd.sdq.commons.util.java</artifactId>
Expand Down
15 changes: 15 additions & 0 deletions vsum/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,21 @@
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>sdq-commons</groupId>
<artifactId>edu.kit.ipd.sdq.commons.util.java</artifactId>
Expand Down

0 comments on commit 6d6ebf2

Please sign in to comment.