From f875828ecc091dc505697ac98256ba06aff9a20a Mon Sep 17 00:00:00 2001 From: "adheli.tavares" Date: Thu, 29 Aug 2024 15:58:06 +0100 Subject: 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 --- utils-test/pom.xml | 1 - .../java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java | 2 -- 2 files changed, 3 deletions(-) (limited to 'utils-test') 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 @@ org.bouncycastle bcpkix-fips - provided org.apache.commons 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; -- cgit 1.2.3-korg