summaryrefslogtreecommitdiffstats
path: root/utils-test
diff options
context:
space:
mode:
authoradheli.tavares <adheli.tavares@est.tech>2024-08-29 15:58:06 +0100
committeradheli.tavares <adheli.tavares@est.tech>2024-08-29 15:59:31 +0100
commitf875828ecc091dc505697ac98256ba06aff9a20a (patch)
tree62f23931de0fa3dce16021bc8badd6822cdd615a /utils-test
parent63d23a4aa0f3aeae9d6470b95dfa8f87b2d85aa8 (diff)
Remove modules not being used
Remove modules common-logging, integrity-audity and integrity-monitor as they are not being used in any component. Issue-ID: POLICY-5123 Change-Id: I571f17236a3c8bb9e8e52c99d0298f4098cb5ca9 Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'utils-test')
-rw-r--r--utils-test/pom.xml1
-rw-r--r--utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java2
2 files changed, 0 insertions, 3 deletions
diff --git a/utils-test/pom.xml b/utils-test/pom.xml
index d5341812..6338cc08 100644
--- a/utils-test/pom.xml
+++ b/utils-test/pom.xml
@@ -42,7 +42,6 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-fips</artifactId>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
diff --git a/utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java b/utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java
index 1cc16263..9fa1067d 100644
--- a/utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java
+++ b/utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java
@@ -75,7 +75,6 @@ public class SelfSignedKeyStore {
* Generates the keystore, if it does not exist or if it's more than a few hours old.
*
* @throws IOException if an I/O error occurs
- * @throws InterruptedException if an interrupt occurs
*/
public SelfSignedKeyStore() throws IOException {
this(RELATIVE_PATH);
@@ -87,7 +86,6 @@ public class SelfSignedKeyStore {
* @param relativePath path to the keystore, relative to the "user.dir" system
* property
* @throws IOException if an I/O error occurs
- * @throws InterruptedException if an interrupt occurs
*/
public SelfSignedKeyStore(String relativePath) throws IOException {
keystoreName = System.getProperty("user.dir") + "/" + relativePath;