Skip to content

Commit

Permalink
upgrade junit dep to junit-jupiter
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Sep 14, 2023
1 parent bee00f8 commit e2fecae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions cygnus-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.1</version>
<scope>test</scope>
</dependency>
<!-- Required by the extension added by cygnus-common to Apache Flume -->
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions cygnus-ngsi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.1</version>
<scope>test</scope>
</dependency>
<!-- Required by NGSIRestHandler -->
Expand Down

0 comments on commit e2fecae

Please sign in to comment.