blob: c926d99ef110a0e19f10c544bc672871dd3ebcac [file] [log] [blame]
Ravi Geda6c3031e2018-09-17 12:57:44 +01001<?xml version="1.0" encoding="UTF-8"?>
Sai Gandham25129102018-11-06 11:29:31 -06002<!--* ============LICENSE_START====================================================
Instrumental5aa8aec2018-11-07 20:52:15 -06003 * ===========================================================================
4 * org.onap.aaf
5 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
6 * ===========================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 * ============LICENSE_END====================================================
17 * -->
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <parent>
22 <groupId>org.onap.aaf.cadi</groupId>
23 <artifactId>parent</artifactId>
24 <version>2.1.7-SNAPSHOT</version>
25 <relativePath>..</relativePath>
26 </parent>
Ravi Geda6c3031e2018-09-17 12:57:44 +010027 <modelVersion>4.0.0</modelVersion>
Ravi Geda1931e662018-09-25 21:54:30 +010028 <groupId>org.onap.aaf.cadi.sidecar</groupId>
Ravi Geda6c3031e2018-09-17 12:57:44 +010029 <artifactId>sidecar</artifactId>
Instrumentalc7014072018-11-07 11:21:03 -060030 <name>Sidecar Parent</name>
Ravi Geda6c3031e2018-09-17 12:57:44 +010031 <packaging>pom</packaging>
32
Ravi Geda6c3031e2018-09-17 12:57:44 +010033 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Instrumental5aa8aec2018-11-07 20:52:15 -060036 <sonar.skip>true</sonar.skip>
37 <jacoco.version>0.7.7.201606060606</jacoco.version>
38 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
39 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
40 <!-- Default Sonar configuration -->
41 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
42 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
43 <!-- Note: This list should match jacoco-maven-plugin's exclusion list
44 below -->
45 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
46 <nexusproxy>https://nexus.onap.org</nexusproxy>
47 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
48 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
49 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
50 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
51
Ravi Geda6c3031e2018-09-17 12:57:44 +010052 <java.version>1.8</java.version>
Instrumental5aa8aec2018-11-07 20:52:15 -060053 <!-- Spring boot version
54 Must match oParent
55 -->
56 <spring.boot.version>2.0.3.RELEASE</spring.boot.version>
57 <spring.web.version>3.0.4.RELEASE</spring.web.version>
Instrumentalc7014072018-11-07 11:21:03 -060058 <docker.location>${basedir}/target</docker.location>
59 <!-- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> -->
Instrumental5aa8aec2018-11-07 20:52:15 -060060
Ravi Geda6c3031e2018-09-17 12:57:44 +010061 </properties>
62
Instrumentalc7014072018-11-07 11:21:03 -060063 <dependencyManagement>
64 <dependencies>
Instrumental5aa8aec2018-11-07 20:52:15 -060065 <dependency>
66 <groupId>org.onap.aaf.cadi.sidecar</groupId>
67 <artifactId>fproxy</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.onap.aaf.cadi.sidecar</groupId>
72 <artifactId>rproxy</artifactId>
73 <version>${project.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>javax.servlet</groupId>
77 <artifactId>javax.servlet-api</artifactId>
78 <version>3.1.0</version>
79 </dependency>
80
81 <dependency>
82 <groupId>org.aspectj</groupId>
83 <artifactId>aspectjrt</artifactId>
84 <version>1.9.2</version>
85 </dependency>
86
87 <dependency>
88 <groupId>com.google.code.gson</groupId>
89 <artifactId>gson</artifactId>
90 <version>2.8.5</version>
91 </dependency>
92
93 <dependency>
94 <groupId>org.apache.commons</groupId>
95 <artifactId>commons-lang3</artifactId>
96 <version>3.8.1</version>
97 </dependency>
98
99 <dependency>
100 <groupId>org.springframework.boot</groupId>
101 <artifactId>spring-boot-starter-jetty</artifactId>
102 <version>${spring.boot.version}</version>
103 </dependency>
104
105 <dependency>
106 <groupId>org.springframework.boot</groupId>
107 <artifactId>spring-boot-starter-aop</artifactId>
108 <version>${spring.boot.version}</version>
109 </dependency>
Instrumentalc7014072018-11-07 11:21:03 -0600110
111 <dependency>
Instrumentalc7014072018-11-07 11:21:03 -0600112 <groupId>org.springframework.boot</groupId>
Instrumental5aa8aec2018-11-07 20:52:15 -0600113 <artifactId>spring-boot-starter-web</artifactId>
Instrumentalc7014072018-11-07 11:21:03 -0600114 <version>${spring.boot.version}</version>
Instrumentalc7014072018-11-07 11:21:03 -0600115 </dependency>
Instrumental5aa8aec2018-11-07 20:52:15 -0600116
117 <dependency>
118 <groupId>org.springframework.boot</groupId>
119 <artifactId>spring-boot-starter-test</artifactId>
120 <version>${spring.boot.version}</version>
121 </dependency>
122
Instrumentalc7014072018-11-07 11:21:03 -0600123 </dependencies>
124 </dependencyManagement>
125
Instrumental5aa8aec2018-11-07 20:52:15 -0600126 <!-- ============================================================== -->
Ravi Geda6c3031e2018-09-17 12:57:44 +0100127 <!-- Define sub-projects (modules) -->
128 <!-- ============================================================== -->
129 <modules>
130 <module>fproxy</module>
Ravi Geda1931e662018-09-25 21:54:30 +0100131 <module>rproxy</module>
132 <module>tproxy-config</module>
Ravi Geda6c3031e2018-09-17 12:57:44 +0100133 </modules>
134
135 <build>
Ravi Geda6c3031e2018-09-17 12:57:44 +0100136 <pluginManagement>
137 <plugins>
138 <plugin>
139 <groupId>com.mycila</groupId>
140 <artifactId>license-maven-plugin</artifactId>
141 <version>3.0</version>
142 <configuration>
143 <header>License.txt</header>
144 <includes>
145 <include>src/main/java/**</include>
146 <include>src/test/java/**</include>
147 <include>pom.xml</include>
148 </includes>
149 <skipExistingHeaders>true</skipExistingHeaders>
150 </configuration>
151 <executions>
152 <execution>
153 <goals>
154 <!-- Set goal from "check" to "format" to auto update license headers -->
155 <goal>check</goal>
156 </goals>
157 <phase>validate</phase>
158 </execution>
159 </executions>
160 </plugin>
Instrumental5aa8aec2018-11-07 20:52:15 -0600161 </plugins>
Ravi Geda6c3031e2018-09-17 12:57:44 +0100162 </pluginManagement>
163 </build>
164</project>