diff options
author | Bogumil Zebek <bogumil.zebek@nokia.com> | 2021-02-19 08:36:45 +0100 |
---|---|---|
committer | Bogumil Zebek <bogumil.zebek@nokia.com> | 2021-02-22 07:44:18 +0000 |
commit | dff666365ea56fe9a0d6b89cdb85bb4bf7849122 (patch) | |
tree | b645c97aba8cd630dfdb9f1c015d8c7a492443af /security/crypt-password/pom.xml | |
parent | 0f93dcadfdb93b8251009f84567652a4675dfd5b (diff) |
Activate JUnits in project
- Fix project configuration: activate junits during project build
- Increase code coverage
Issue-ID: DCAEGEN2-1016
Signed-off-by: Zebek Bogumil <bogumil.zebek@nokia.com>
Change-Id: I3d6d3462b4582c20c77577640deff8cece10d4d2
Diffstat (limited to 'security/crypt-password/pom.xml')
-rw-r--r-- | security/crypt-password/pom.xml | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/security/crypt-password/pom.xml b/security/crypt-password/pom.xml index 7c6495ae..732df17d 100644 --- a/security/crypt-password/pom.xml +++ b/security/crypt-password/pom.xml @@ -27,14 +27,6 @@ <artifactId>spring-security-crypto</artifactId> </dependency> <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-api</artifactId> - </dependency> - <dependency> - <groupId>org.assertj</groupId> - <artifactId>assertj-core</artifactId> - </dependency> - <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <scope>runtime</scope> @@ -44,6 +36,21 @@ <artifactId>logback-classic</artifactId> <scope>runtime</scope> </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-engine</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> </dependencies> <build> |