aboutsummaryrefslogtreecommitdiffstats
path: root/sidecar
diff options
context:
space:
mode:
authorInstrumental <jonathan.gathman@att.com>2018-11-07 11:21:03 -0600
committerInstrumental <jonathan.gathman@att.com>2018-11-07 11:30:51 -0600
commitc701407539324d60f32be496e5292808829ae1d6 (patch)
treed650a9d1a820af98e99796e98cffdb77e018c400 /sidecar
parent25129101f6735146df78a6c94fac9fca510d585d (diff)
Pom OParent, other hierarchy
Issue-ID: AAF-613 Change-Id: I14531b546aebb9e5326ddc67eb3ec4eb9e17dac1 Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'sidecar')
-rw-r--r--sidecar/.gitignore4
-rw-r--r--sidecar/fproxy/.gitignore4
-rw-r--r--sidecar/fproxy/pom.xml5
-rw-r--r--sidecar/pom.xml57
-rw-r--r--sidecar/rproxy/.gitignore4
-rw-r--r--sidecar/rproxy/pom.xml26
-rw-r--r--sidecar/tproxy-config/.gitignore4
-rw-r--r--sidecar/tproxy-config/pom.xml5
8 files changed, 70 insertions, 39 deletions
diff --git a/sidecar/.gitignore b/sidecar/.gitignore
new file mode 100644
index 0000000..6028f0a
--- /dev/null
+++ b/sidecar/.gitignore
@@ -0,0 +1,4 @@
+/.classpath
+/.settings/
+/target/
+/.project
diff --git a/sidecar/fproxy/.gitignore b/sidecar/fproxy/.gitignore
new file mode 100644
index 0000000..6028f0a
--- /dev/null
+++ b/sidecar/fproxy/.gitignore
@@ -0,0 +1,4 @@
+/.classpath
+/.settings/
+/target/
+/.project
diff --git a/sidecar/fproxy/pom.xml b/sidecar/fproxy/pom.xml
index c8b55ab..0246eb2 100644
--- a/sidecar/fproxy/pom.xml
+++ b/sidecar/fproxy/pom.xml
@@ -24,14 +24,13 @@
<parent>
<groupId>org.onap.aaf.cadi.sidecar</groupId>
<artifactId>sidecar</artifactId>
- <version>2.1.2-SNAPSHOT</version>
+ <version>2.1.7-SNAPSHOT</version>
</parent>
<artifactId>fproxy</artifactId>
- <version>2.1.2-SNAPSHOT</version>
<packaging>jar</packaging>
- <name>aaf-fproxy</name>
+ <name>Sidecar fproxy</name>
<description>ONAP AAF Forward Proxy Microservice For Pluggable Security</description>
<properties>
diff --git a/sidecar/pom.xml b/sidecar/pom.xml
index 86658f7..def9f20 100644
--- a/sidecar/pom.xml
+++ b/sidecar/pom.xml
@@ -18,26 +18,52 @@
* ============LICENSE_END====================================================
* -->
<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">
+ <parent>
+ <groupId>org.onap.aaf.cadi</groupId>
+ <artifactId>parent</artifactId>
+ <version>2.1.7-SNAPSHOT</version>
+ <relativePath>..</relativePath>
+ </parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.onap.aaf.cadi.sidecar</groupId>
<artifactId>sidecar</artifactId>
- <version>2.1.2-SNAPSHOT</version>
- <name>aaf-cadi-sidecar</name>
+ <name>Sidecar Parent</name>
<packaging>pom</packaging>
- <parent>
- <groupId>org.onap.oparent</groupId>
- <artifactId>oparent</artifactId>
- <version>1.2.1</version>
- <relativePath />
- </parent>
-
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
+ <spring.boot.version>2.0.3.RELEASE</spring.boot.version>
+ <docker.location>${basedir}/target</docker.location>
+ <!-- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> -->
</properties>
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.onap.aaf.cadi.sidecar</groupId>
+ <artifactId>fproxy</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.onap.aaf.cadi.sidecar</groupId>
+ <artifactId>rproxy</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <!-- Import dependency management from Spring Boot -->
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-dependencies</artifactId>
+ <version>${spring.boot.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<!-- ============================================================== -->
<!-- Define sub-projects (modules) -->
<!-- ============================================================== -->
@@ -48,6 +74,19 @@
</modules>
<build>
+ <plugins>
+ <!-- Sidecare only works on Java 1.8 and above -->
+ <plugin>
+ <inherited>true</inherited>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>${java.version}</source>
+ <target>${java.version}</target>
+ </configuration>
+ </plugin>
+ </plugins>
<pluginManagement>
<plugins>
<plugin>
diff --git a/sidecar/rproxy/.gitignore b/sidecar/rproxy/.gitignore
new file mode 100644
index 0000000..6028f0a
--- /dev/null
+++ b/sidecar/rproxy/.gitignore
@@ -0,0 +1,4 @@
+/.classpath
+/.settings/
+/target/
+/.project
diff --git a/sidecar/rproxy/pom.xml b/sidecar/rproxy/pom.xml
index 6131a39..6c32238 100644
--- a/sidecar/rproxy/pom.xml
+++ b/sidecar/rproxy/pom.xml
@@ -24,35 +24,15 @@
<parent>
<groupId>org.onap.aaf.cadi.sidecar</groupId>
<artifactId>sidecar</artifactId>
- <version>2.1.2-SNAPSHOT</version>
+ <version>2.1.7-SNAPSHOT</version>
</parent>
<artifactId>rproxy</artifactId>
- <version>2.1.2-SNAPSHOT</version>
<packaging>jar</packaging>
- <name>aaf-rproxy</name>
+ <name>Sidecar rproxy</name>
<description>ONAP AAF Reverse Proxy Microservice For Pluggable Security</description>
- <properties>
- <spring.boot.version>2.0.3.RELEASE</spring.boot.version>
- <docker.location>${basedir}/target</docker.location>
- <!-- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> -->
- </properties>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <!-- Import dependency management from Spring Boot -->
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-dependencies</artifactId>
- <version>${spring.boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
<dependencies>
<!-- Spring Boot Dependencies -->
@@ -98,7 +78,6 @@
<dependency>
<groupId>org.onap.aaf.cadi.sidecar</groupId>
<artifactId>fproxy</artifactId>
- <version>2.1.2-SNAPSHOT</version>
</dependency>
<dependency>
@@ -116,7 +95,6 @@
<dependency>
<groupId>org.onap.aaf.authz</groupId>
<artifactId>aaf-cadi-aaf</artifactId>
- <version>2.1.2</version>
</dependency>
</dependencies>
diff --git a/sidecar/tproxy-config/.gitignore b/sidecar/tproxy-config/.gitignore
new file mode 100644
index 0000000..6028f0a
--- /dev/null
+++ b/sidecar/tproxy-config/.gitignore
@@ -0,0 +1,4 @@
+/.classpath
+/.settings/
+/target/
+/.project
diff --git a/sidecar/tproxy-config/pom.xml b/sidecar/tproxy-config/pom.xml
index ab939b8..b9a7104 100644
--- a/sidecar/tproxy-config/pom.xml
+++ b/sidecar/tproxy-config/pom.xml
@@ -24,14 +24,13 @@
<parent>
<groupId>org.onap.aaf.cadi.sidecar</groupId>
<artifactId>sidecar</artifactId>
- <version>2.1.2-SNAPSHOT</version>
+ <version>2.1.7-SNAPSHOT</version>
</parent>
<artifactId>tproxy-config</artifactId>
- <version>2.1.2-SNAPSHOT</version>
<packaging>jar</packaging>
- <name>aaf-tproxy-config</name>
+ <name>Sidecar tproxy-config</name>
<description>ONAP AAF InitContainer For Pluggable Security</description>
<properties>