Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Sai Gandham | 2512910 | 2018-11-06 11:29:31 -0600 | [diff] [blame] | 2 | <!--* ============LICENSE_START==================================================== |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 3 | * =========================================================================== |
| 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> |
Instrumental | 49d5ae3 | 2018-11-19 13:42:30 -0600 | [diff] [blame] | 24 | <version>2.1.9-SNAPSHOT</version> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 25 | <relativePath>..</relativePath> |
| 26 | </parent> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 27 | <modelVersion>4.0.0</modelVersion> |
Ravi Geda | 1931e66 | 2018-09-25 21:54:30 +0100 | [diff] [blame] | 28 | <groupId>org.onap.aaf.cadi.sidecar</groupId> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 29 | <artifactId>sidecar</artifactId> |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 30 | <name>Sidecar Parent</name> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 31 | <packaging>pom</packaging> |
| 32 | |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 33 | <properties> |
| 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 35 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
IanB | 50fd8fd | 2018-11-22 15:57:14 +0000 | [diff] [blame] | 36 | <sonar.skip>false</sonar.skip> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 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 Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 52 | <java.version>1.8</java.version> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 53 | <!-- Spring boot version |
| 54 | Must match oParent |
| 55 | --> |
IanB | 50fd8fd | 2018-11-22 15:57:14 +0000 | [diff] [blame] | 56 | <spring.boot.version>2.0.5.RELEASE</spring.boot.version> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 57 | <spring.web.version>3.0.4.RELEASE</spring.web.version> |
IanB | 50fd8fd | 2018-11-22 15:57:14 +0000 | [diff] [blame] | 58 | |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 59 | <docker.location>${basedir}/target</docker.location> |
| 60 | <!-- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> --> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 61 | |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 62 | </properties> |
| 63 | |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 64 | <dependencyManagement> |
| 65 | <dependencies> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 66 | <dependency> |
| 67 | <groupId>org.onap.aaf.cadi.sidecar</groupId> |
| 68 | <artifactId>fproxy</artifactId> |
| 69 | <version>${project.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.aaf.cadi.sidecar</groupId> |
| 73 | <artifactId>rproxy</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>javax.servlet</groupId> |
| 78 | <artifactId>javax.servlet-api</artifactId> |
| 79 | <version>3.1.0</version> |
| 80 | </dependency> |
| 81 | |
| 82 | <dependency> |
| 83 | <groupId>org.aspectj</groupId> |
| 84 | <artifactId>aspectjrt</artifactId> |
| 85 | <version>1.9.2</version> |
| 86 | </dependency> |
| 87 | |
| 88 | <dependency> |
| 89 | <groupId>com.google.code.gson</groupId> |
| 90 | <artifactId>gson</artifactId> |
| 91 | <version>2.8.5</version> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>org.apache.commons</groupId> |
| 96 | <artifactId>commons-lang3</artifactId> |
| 97 | <version>3.8.1</version> |
| 98 | </dependency> |
| 99 | |
| 100 | <dependency> |
| 101 | <groupId>org.springframework.boot</groupId> |
| 102 | <artifactId>spring-boot-starter-jetty</artifactId> |
| 103 | <version>${spring.boot.version}</version> |
| 104 | </dependency> |
| 105 | |
| 106 | <dependency> |
| 107 | <groupId>org.springframework.boot</groupId> |
| 108 | <artifactId>spring-boot-starter-aop</artifactId> |
| 109 | <version>${spring.boot.version}</version> |
| 110 | </dependency> |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 111 | |
| 112 | <dependency> |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 113 | <groupId>org.springframework.boot</groupId> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 114 | <artifactId>spring-boot-starter-web</artifactId> |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 115 | <version>${spring.boot.version}</version> |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 116 | </dependency> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 117 | |
| 118 | <dependency> |
| 119 | <groupId>org.springframework.boot</groupId> |
| 120 | <artifactId>spring-boot-starter-test</artifactId> |
| 121 | <version>${spring.boot.version}</version> |
| 122 | </dependency> |
IanB | 50fd8fd | 2018-11-22 15:57:14 +0000 | [diff] [blame] | 123 | |
Instrumental | c701407 | 2018-11-07 11:21:03 -0600 | [diff] [blame] | 124 | </dependencies> |
| 125 | </dependencyManagement> |
| 126 | |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 127 | <!-- ============================================================== --> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 128 | <!-- Define sub-projects (modules) --> |
| 129 | <!-- ============================================================== --> |
| 130 | <modules> |
| 131 | <module>fproxy</module> |
Ravi Geda | 1931e66 | 2018-09-25 21:54:30 +0100 | [diff] [blame] | 132 | <module>rproxy</module> |
| 133 | <module>tproxy-config</module> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 134 | </modules> |
| 135 | |
| 136 | <build> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 137 | <pluginManagement> |
| 138 | <plugins> |
IanB | 50fd8fd | 2018-11-22 15:57:14 +0000 | [diff] [blame] | 139 | |
| 140 | <plugin> |
| 141 | <artifactId>maven-surefire-plugin</artifactId> |
| 142 | <version>2.17</version> |
| 143 | <configuration> |
| 144 | <!-- Suppresses parent pom config of Surefire plugin. Has the affect of |
| 145 | setting Surefire file includes back to default and re-enables sidecar |
| 146 | unit tests --> |
| 147 | <includes combine.self="override"></includes> |
| 148 | </configuration> |
| 149 | </plugin> |
| 150 | |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 151 | <plugin> |
| 152 | <groupId>com.mycila</groupId> |
| 153 | <artifactId>license-maven-plugin</artifactId> |
| 154 | <version>3.0</version> |
| 155 | <configuration> |
| 156 | <header>License.txt</header> |
| 157 | <includes> |
| 158 | <include>src/main/java/**</include> |
| 159 | <include>src/test/java/**</include> |
| 160 | <include>pom.xml</include> |
| 161 | </includes> |
| 162 | <skipExistingHeaders>true</skipExistingHeaders> |
| 163 | </configuration> |
| 164 | <executions> |
| 165 | <execution> |
| 166 | <goals> |
| 167 | <!-- Set goal from "check" to "format" to auto update license headers --> |
| 168 | <goal>check</goal> |
| 169 | </goals> |
| 170 | <phase>validate</phase> |
| 171 | </execution> |
| 172 | </executions> |
| 173 | </plugin> |
Instrumental | 5aa8aec | 2018-11-07 20:52:15 -0600 | [diff] [blame] | 174 | </plugins> |
Ravi Geda | 6c3031e | 2018-09-17 12:57:44 +0100 | [diff] [blame] | 175 | </pluginManagement> |
| 176 | </build> |
| 177 | </project> |