diff options
author | sblimkie <steven.blimkie@amdocs.com> | 2017-12-05 14:12:27 -0500 |
---|---|---|
committer | sblimkie <steven.blimkie@amdocs.com> | 2017-12-05 15:36:25 -0500 |
commit | edb043b451b5026371e9ef3c7876c09fc49b7419 (patch) | |
tree | 3bbda6e01735898b6aba99df070e65ce57c42589 | |
parent | 6cf54ec1fd09b10815efb4f8c5defcb8fffa34ec (diff) |
Rename some packages from openecomp to onap
Couple packages were missed last time we went though this excersise. I
also remove the checkstyle plugin from the child pom files, as it gets
inherited from the parent pom automatically.
Issue-ID: AAI-10
Change-Id: I599346dfd83c01f8818b9c3a3efb126e2d34b2fe
Signed-off-by: sblimkie <steven.blimkie@amdocs.com>
-rw-r--r-- | aai-auth/pom.xml | 19 | ||||
-rw-r--r-- | aai-auth/src/main/java/org/onap/aaiauth/auth/Auth.java (renamed from aai-auth/src/main/java/org/openecomp/auth/Auth.java) | 2 | ||||
-rw-r--r-- | aai-auth/src/main/java/org/onap/aaiauth/auth/AuthCore.java (renamed from aai-auth/src/main/java/org/openecomp/auth/AuthCore.java) | 4 | ||||
-rw-r--r-- | aai-auth/src/main/java/org/onap/aaiauth/util/AuthConstants.java (renamed from aai-auth/src/main/java/org/openecomp/util/AuthConstants.java) | 2 | ||||
-rw-r--r-- | aai-utils/pom.xml | 18 |
5 files changed, 5 insertions, 40 deletions
diff --git a/aai-auth/pom.xml b/aai-auth/pom.xml index b6251fbb..b8769ddd 100644 --- a/aai-auth/pom.xml +++ b/aai-auth/pom.xml @@ -11,8 +11,7 @@ <version>1.2.0-SNAPSHOT</version> <properties> - <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> - <checkstyle.config.location>google_checks.xml</checkstyle.config.location> + <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> </properties> @@ -67,20 +66,4 @@ </plugins> </build> - <reporting> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <version>2.17</version> - <reportSets> - <reportSet> - <reports> - <report>checkstyle</report> - </reports> - </reportSet> - </reportSets> - </plugin> - </plugins> - </reporting> </project> diff --git a/aai-auth/src/main/java/org/openecomp/auth/Auth.java b/aai-auth/src/main/java/org/onap/aaiauth/auth/Auth.java index cd6ef988..2a4a7531 100644 --- a/aai-auth/src/main/java/org/openecomp/auth/Auth.java +++ b/aai-auth/src/main/java/org/onap/aaiauth/auth/Auth.java @@ -22,7 +22,7 @@ * ECOMP and OpenECOMP are trademarks * and service marks of AT&T Intellectual Property. */ -package org.openecomp.auth; +package org.onap.aaiauth.auth; import org.apache.http.cookie.Cookie; diff --git a/aai-auth/src/main/java/org/openecomp/auth/AuthCore.java b/aai-auth/src/main/java/org/onap/aaiauth/auth/AuthCore.java index f1712e78..a9d4ad54 100644 --- a/aai-auth/src/main/java/org/openecomp/auth/AuthCore.java +++ b/aai-auth/src/main/java/org/onap/aaiauth/auth/AuthCore.java @@ -22,7 +22,7 @@ * ECOMP and OpenECOMP are trademarks * and service marks of AT&T Intellectual Property. */ -package org.openecomp.auth; +package org.onap.aaiauth.auth; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; @@ -31,7 +31,7 @@ import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import org.openecomp.util.AuthConstants; +import org.onap.aaiauth.util.AuthConstants; public class AuthCore { diff --git a/aai-auth/src/main/java/org/openecomp/util/AuthConstants.java b/aai-auth/src/main/java/org/onap/aaiauth/util/AuthConstants.java index e202615b..9d8786c3 100644 --- a/aai-auth/src/main/java/org/openecomp/util/AuthConstants.java +++ b/aai-auth/src/main/java/org/onap/aaiauth/util/AuthConstants.java @@ -22,7 +22,7 @@ * ECOMP and OpenECOMP are trademarks * and service marks of AT&T Intellectual Property. */ -package org.openecomp.util; +package org.onap.aaiauth.util; public class AuthConstants { diff --git a/aai-utils/pom.xml b/aai-utils/pom.xml index 74a39952..38ac28c8 100644 --- a/aai-utils/pom.xml +++ b/aai-utils/pom.xml @@ -14,7 +14,6 @@ <version>1.2.0-SNAPSHOT</version> <properties> - <checkstyle.config.location>google_checks.xml</checkstyle.config.location> <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> </properties> @@ -107,21 +106,4 @@ </plugins> </build> - <reporting> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - <version>2.17</version> - <reportSets> - <reportSet> - <reports> - <report>checkstyle</report> - </reports> - </reportSet> - </reportSets> - </plugin> - </plugins> - </reporting> - </project>
\ No newline at end of file |