Skip to content

Commit

Permalink
JUnit 5 version should match in ArC too
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Sep 15, 2020
1 parent 3579849 commit c2d6129
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
11 changes: 7 additions & 4 deletions independent-projects/arc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<version.cdi>2.0.2</version.cdi>
<version.jta>1.3.3</version.jta>
<version.jandex>2.2.1.Final</version.jandex>
<version.junit5>5.6.1</version.junit5>
<version.junit5>5.7.0</version.junit5>
<version.maven>3.6.3</version.maven>
<version.assertj>3.17.2</version.assertj>
<version.jboss-logging>3.3.2.Final</version.jboss-logging>
Expand Down Expand Up @@ -90,13 +90,16 @@
<version>${version.gizmo}</version>
</dependency>

<!-- JUnit 5 dependencies, imported as a BOM -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${version.junit5}</version>
<scope>test</scope>
<scope>import</scope>
<type>pom</type>
</dependency>


<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
Expand Down
1 change: 1 addition & 0 deletions independent-projects/arc/processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
1 change: 1 addition & 0 deletions independent-projects/arc/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>

<dependency>
Expand Down
1 change: 1 addition & 0 deletions independent-projects/arc/tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>

<dependency>
Expand Down

0 comments on commit c2d6129

Please sign in to comment.