Skip to content

Commit 1c66e9d

Browse files
committed
Change Maven dependency
The Maven dependency for `junit` was set to scope `provided` while it should have been `test`.
1 parent a095e2d commit 1c66e9d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ mvn clean install;
1111

1212
This will build both the `jar-module` and `ear-module`:
1313
```
14-
[INFO] Reactor Summary for Argon2 Password Hash Provider 1.1.0:
14+
[INFO] Reactor Summary for Argon2 Password Hash Provider x.y.z:
1515
[INFO]
1616
[INFO] Argon2 Password Hash Provider ...................... SUCCESS [ 0.633 s]
1717
[INFO] Argon2 Password Hash Provider Module ............... SUCCESS [ 3.264 s]

ear-module/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>be.cronos.keycloak</groupId>
66
<artifactId>argon2-password-hash-provider</artifactId>
7-
<version>1.1.0</version>
7+
<version>1.1.1</version>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010

jar-module/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>be.cronos.keycloak</groupId>
77
<artifactId>argon2-password-hash-provider</artifactId>
8-
<version>1.1.0</version>
8+
<version>1.1.1</version>
99
</parent>
1010

1111
<artifactId>argon2-password-hash-provider-module</artifactId>
@@ -44,7 +44,7 @@
4444
<groupId>junit</groupId>
4545
<artifactId>junit</artifactId>
4646
<version>${junit.version}</version>
47-
<scope>provided</scope>
47+
<scope>test</scope>
4848
</dependency>
4949
</dependencies>
5050

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>be.cronos.keycloak</groupId>
77
<artifactId>argon2-password-hash-provider</artifactId>
8-
<version>1.1.0</version>
8+
<version>1.1.1</version>
99
<packaging>pom</packaging>
1010

1111
<modules>

0 commit comments

Comments
 (0)