Skip to content

Commit

Permalink
fix the junit mvn property name clash
Browse files Browse the repository at this point in the history
  • Loading branch information
liga-oz committed Aug 21, 2023
1 parent 6a6206a commit bceca74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions samples/spring-security-xsuaa-usage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<java.version>17</java.version>
<sap.cloud.security.version>3.1.2</sap.cloud.security.version>
<http.client5>5.2.1</http.client5>
<junit.version>5.10.0</junit.version>
<junit.engine>5.10.0</junit.engine>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -75,13 +75,13 @@
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit.version}</version>
<version>${junit.engine}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<version>${junit.engine}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit bceca74

Please sign in to comment.