diff options
author | Ravi Geda <gravik@amdocs.com> | 2018-09-25 21:54:30 +0100 |
---|---|---|
committer | Ravi Geda <gravik@amdocs.com> | 2018-09-26 13:04:51 +0100 |
commit | 1931e66d470ee452d148f62e87254a6cad545566 (patch) | |
tree | 7e8b4a35d818dc951c0b1c084ec0d829556b8afe /sidecar/fproxy/pom.xml | |
parent | 408697418b8787dd354482bbeab3ff87de68bfff (diff) |
Fix failing jenkins jobs
The docker java daily job is hanging when it tries to build the image.
Add rproxy and tproxy-config as submodules to sidecar. Align the groupid
of sidecar pom.
Change-Id: Idb24459b9eae43dbbef39b4a14b6167762fa126f
Issue-ID: AAI-1676
Signed-off-by: Ravi Geda <gravik@amdocs.com>
Diffstat (limited to 'sidecar/fproxy/pom.xml')
-rw-r--r-- | sidecar/fproxy/pom.xml | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/sidecar/fproxy/pom.xml b/sidecar/fproxy/pom.xml index 8035e84..81014e6 100644 --- a/sidecar/fproxy/pom.xml +++ b/sidecar/fproxy/pom.xml @@ -24,16 +24,16 @@ 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> - <artifactId>fproxy</artifactId> - <version>1.0.0-SNAPSHOT</version> - <packaging>jar</packaging> - <parent> - <groupId>org.onap.aaf.cadi</groupId> + <groupId>org.onap.aaf.cadi.sidecar</groupId> <artifactId>sidecar</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> + <artifactId>fproxy</artifactId> + <version>1.0.0-SNAPSHOT</version> + <packaging>jar</packaging> + <name>aaf-fproxy</name> <description>ONAP AAF Forward Proxy Microservice For Pluggable Security</description> @@ -160,13 +160,6 @@ <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.4.11</version> - <dependencies> - <dependency> - <groupId>com.github.jnr</groupId> - <artifactId>jnr-unixsocket</artifactId> - <version>0.13</version> - </dependency> - </dependencies> <configuration> <verbose>true</verbose> <serverId>docker-hub</serverId> @@ -181,9 +174,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> - <configuration> - <skip>true</skip> - </configuration> </plugin> </plugins> </build> |