diff options
author | Singal, Kapil (ks220y) <ks220y@att.com> | 2020-08-12 18:42:35 -0400 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2020-08-12 23:36:54 +0000 |
commit | 779d23c7ce3ddba0986bc7aa4ef8535b1d36c3c5 (patch) | |
tree | 2733ad6944000781555fedce2ef8dd35c18e1bb8 /lib | |
parent | 1d3548f5b6ea1b089d52f7a9ad5a7b302fac598c (diff) |
Refactoring POMS
running mvn tidy:pom and removing few duplicate dependencies
Change-Id: I73144605f24c2d9cb524ab8bcdd6aebb5f0ec682
Issue-ID: CCSDK-2647
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/doorman/pom.xml | 7 | ||||
-rw-r--r-- | lib/rlock/pom.xml | 7 |
2 files changed, 4 insertions, 10 deletions
diff --git a/lib/doorman/pom.xml b/lib/doorman/pom.xml index fca0a086b..f10a3235b 100644 --- a/lib/doorman/pom.xml +++ b/lib/doorman/pom.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> <parent> @@ -13,10 +12,10 @@ <groupId>org.onap.ccsdk.features.lib.doorman</groupId> <artifactId>doorman</artifactId> + <name>ccsdk-features :: ${project.artifactId}</name> <description>Doorman - Request prioritization and aggregation queue</description> <dependencies> - <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> @@ -30,7 +29,6 @@ <artifactId>rlock</artifactId> <version>1.0.1-SNAPSHOT</version> </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> @@ -47,6 +45,5 @@ <scope>test</scope> </dependency> - </dependencies> - + </dependencies> </project> diff --git a/lib/rlock/pom.xml b/lib/rlock/pom.xml index d116b6505..9a8a9b809 100644 --- a/lib/rlock/pom.xml +++ b/lib/rlock/pom.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> <parent> @@ -13,15 +12,14 @@ <groupId>org.onap.ccsdk.features.lib.rlock</groupId> <artifactId>rlock</artifactId> + <name>ccsdk-features :: ${project.artifactId}</name> <description>Resource Lock - Distributed locking feature using database</description> <dependencies> - <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> @@ -38,6 +36,5 @@ <scope>test</scope> </dependency> - </dependencies> - + </dependencies> </project> |