summaryrefslogtreecommitdiffstats
path: root/auth
diff options
context:
space:
mode:
authorSai Gandham <sg481n@att.com>2018-03-27 21:08:58 +0000
committerSai Gandham <sg481n@att.com>2018-03-27 22:26:33 +0000
commit05c86474cdee38b0ae8b66f4d0d3f18385896d1b (patch)
treebfec7894bc2a0b45ef373689a8e82d8c5f849bf9 /auth
parent649335a398f1d0fd7e7d42062c6618c99517ef5d (diff)
Add deploy plugin & enable tests
Testcases were skipped in auth parent pom now changed property to false and made false in auth-core add deploy plugin for missing poms.Also modify docker-compose file For now skipping all testcases. Issue-ID: AAF-199 Change-Id: I9080e8809c8133411f492e33d3bf1c9c8fde24ec Signed-off-by: Sai Gandham <sg481n@att.com>
Diffstat (limited to 'auth')
-rw-r--r--auth/auth-batch/pom.xml1
-rw-r--r--auth/auth-cass/pom.xml10
-rw-r--r--auth/auth-certman/pom.xml1
-rw-r--r--auth/auth-cmd/pom.xml8
-rw-r--r--auth/auth-core/pom.xml8
-rw-r--r--auth/auth-deforg/pom.xml8
-rw-r--r--auth/auth-fs/pom.xml1
-rw-r--r--auth/auth-hello/pom.xml1
-rw-r--r--auth/auth-service/src/main/resources/docker-compose/docker-compose.yml4
-rw-r--r--auth/pom.xml2
10 files changed, 40 insertions, 4 deletions
diff --git a/auth/auth-batch/pom.xml b/auth/auth-batch/pom.xml
index c0888adf..cd553506 100644
--- a/auth/auth-batch/pom.xml
+++ b/auth/auth-batch/pom.xml
@@ -71,6 +71,7 @@
</developers>
<properties>
+ <skipTests>true</skipTests>
<maven.test.failure.ignore>false</maven.test.failure.ignore>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
diff --git a/auth/auth-cass/pom.xml b/auth/auth-cass/pom.xml
index a459902d..1835812c 100644
--- a/auth/auth-cass/pom.xml
+++ b/auth/auth-cass/pom.xml
@@ -71,6 +71,7 @@
</developers>
<properties>
+ <skipTests>true</skipTests>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
<sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
@@ -132,7 +133,14 @@
</dependencies>
<build>
<plugins>
- <plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
diff --git a/auth/auth-certman/pom.xml b/auth/auth-certman/pom.xml
index 7bd87bf2..5363a824 100644
--- a/auth/auth-certman/pom.xml
+++ b/auth/auth-certman/pom.xml
@@ -34,6 +34,7 @@
<description>Certificate Manager API</description>
<properties>
+ <skipTests>true</skipTests>
<project.swmVersion>21</project.swmVersion>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
diff --git a/auth/auth-cmd/pom.xml b/auth/auth-cmd/pom.xml
index ecf9d255..261e425d 100644
--- a/auth/auth-cmd/pom.xml
+++ b/auth/auth-cmd/pom.xml
@@ -36,6 +36,7 @@
<packaging>jar</packaging>
<properties>
+ <skipTests>true</skipTests>
<maven.test.failure.ignore>false</maven.test.failure.ignore>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
@@ -91,6 +92,13 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
diff --git a/auth/auth-core/pom.xml b/auth/auth-core/pom.xml
index 5d688c0f..327a3d51 100644
--- a/auth/auth-core/pom.xml
+++ b/auth/auth-core/pom.xml
@@ -72,6 +72,7 @@
<properties>
+ <skipTests>true</skipTests>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
<sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
@@ -128,6 +129,13 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
diff --git a/auth/auth-deforg/pom.xml b/auth/auth-deforg/pom.xml
index 84f0cbb1..1fa3f495 100644
--- a/auth/auth-deforg/pom.xml
+++ b/auth/auth-deforg/pom.xml
@@ -72,6 +72,7 @@
<properties>
+ <skipTests>true</skipTests>
<maven.test.failure.ignore>false</maven.test.failure.ignore>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
@@ -110,6 +111,13 @@
<build>
<pluginManagement>
<plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
diff --git a/auth/auth-fs/pom.xml b/auth/auth-fs/pom.xml
index 37d61c31..f3bbdd3a 100644
--- a/auth/auth-fs/pom.xml
+++ b/auth/auth-fs/pom.xml
@@ -34,6 +34,7 @@
<description>Independent FileServer Component via HTTP (not S) for Public Files (i.e. CRLs) for AAF Auth</description>
<properties>
+ <skipTests>true</skipTests>
<maven.test.failure.ignore>true</maven.test.failure.ignore>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
diff --git a/auth/auth-hello/pom.xml b/auth/auth-hello/pom.xml
index 51e4559d..97226500 100644
--- a/auth/auth-hello/pom.xml
+++ b/auth/auth-hello/pom.xml
@@ -26,6 +26,7 @@
<description>Hello Service Component for testing AAF Auth Access</description>
<properties>
+ <skipTests>false</skipTests>
<!-- SONAR -->
<jacoco.version>0.7.7.201606060606</jacoco.version>
<sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
diff --git a/auth/auth-service/src/main/resources/docker-compose/docker-compose.yml b/auth/auth-service/src/main/resources/docker-compose/docker-compose.yml
index 501bb308..eb96e503 100644
--- a/auth/auth-service/src/main/resources/docker-compose/docker-compose.yml
+++ b/auth/auth-service/src/main/resources/docker-compose/docker-compose.yml
@@ -1,4 +1,4 @@
-#-------------------------------------------------------------------------------
+#-------------------------------------------------------------------------------
# ============LICENSE_START====================================================
# * org.onap.aaf
# * ===========================================================================
@@ -22,7 +22,7 @@
version: '2'
services:
aaf_container:
- image: onap/aaf/authz-service:1.0.1-SNAPSHOT
+ image: nexus3.onap.org:10001/onap/aaf/authz-service:1.0.1-SNAPSHOT
ports:
- "8101:8101"
diff --git a/auth/pom.xml b/auth/pom.xml
index 1889379a..4372d6e7 100644
--- a/auth/pom.xml
+++ b/auth/pom.xml
@@ -107,7 +107,7 @@
<artifactId>maven-deploy-plugin</artifactId>
<version>2.6</version>
<configuration>
- <skip>false</skip>
+ <skip>true</skip>
</configuration>
</plugin>