Changed to unmaintained
[aaf/cadi.git] / sidecar / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--* ============LICENSE_START==================================================== 
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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20         <parent>
21                 <groupId>org.onap.aaf.cadi</groupId>
22                 <artifactId>parent</artifactId>
23                 <version>2.1.19-SNAPSHOT</version>
24                 <relativePath>..</relativePath>
25         </parent>
26         <modelVersion>4.0.0</modelVersion>
27         <groupId>org.onap.aaf.cadi.sidecar</groupId>
28         <artifactId>sidecar</artifactId>
29         <name>Sidecar Parent</name>
30         <packaging>pom</packaging>
31
32         <properties>
33                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
35                 <sonar.skip>false</sonar.skip>
36                 <jacoco.version>0.7.7.201606060606</jacoco.version>
37                 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
38                 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
39                 <!-- Default Sonar configuration -->
40                 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
41                 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
42                 <!-- Note: This list should match jacoco-maven-plugin's exclusion list 
43                         below -->
44                 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
45                 <nexusproxy>https://nexus.onap.org</nexusproxy>
46                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
47                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
48                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
49                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
50
51                 <java.version>1.8</java.version>
52                 <!-- Spring boot version 
53                   Must match oParent
54                 -->
55                 <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
56                 <spring.web.version>5.1.3.RELEASE</spring.web.version>
57
58                 <docker.location>${basedir}/target/build</docker.location>
59                 <!-- <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo> -->
60
61         </properties>
62
63         <dependencyManagement>
64                 <dependencies>
65                         <dependency>
66                                 <groupId>org.onap.aaf.cadi.sidecar</groupId>
67                                 <artifactId>fproxy</artifactId>
68                                 <version>2.1.13</version>
69                         </dependency>
70                         <dependency>
71                                 <groupId>org.onap.aaf.cadi.sidecar</groupId>
72                                 <artifactId>rproxy</artifactId>
73                                 <version>2.1.13</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                         <dependency>
81                                 <groupId>org.aspectj</groupId>
82                                 <artifactId>aspectjrt</artifactId>
83                                 <version>1.9.2</version>
84                         </dependency>
85                         <dependency>
86                                 <groupId>com.google.code.gson</groupId>
87                                 <artifactId>gson</artifactId>
88                                 <version>2.8.5</version>
89                         </dependency>
90                         <dependency>
91                                 <groupId>org.apache.commons</groupId>
92                                 <artifactId>commons-lang3</artifactId>
93                                 <version>3.8.1</version>
94                         </dependency>
95                         <dependency>
96                                 <groupId>org.springframework.boot</groupId>
97                                 <artifactId>spring-boot-starter-jetty</artifactId>
98                                 <version>${spring.boot.version}</version>
99                         </dependency>
100                         <dependency>
101                                 <groupId>org.springframework.boot</groupId>
102                                 <artifactId>spring-boot-starter-aop</artifactId>
103                                 <version>${spring.boot.version}</version>
104                         </dependency>
105                         <dependency>
106                                 <groupId>org.springframework.boot</groupId>
107                                 <artifactId>spring-boot-starter-web</artifactId>
108                                 <version>${spring.boot.version}</version>
109                         </dependency>
110                         <dependency>
111                                 <groupId>org.springframework.boot</groupId>
112                                 <artifactId>spring-boot-starter-test</artifactId>
113                                 <version>${spring.boot.version}</version>
114                         </dependency>
115                         <dependency>
116                                 <groupId>org.springframework</groupId>
117                                 <artifactId>spring-core</artifactId>
118                                 <version>${spring.web.version}</version>
119                         </dependency>
120                         <dependency>
121                                 <groupId>org.springframework</groupId>
122                                 <artifactId>spring-expression</artifactId>
123                                 <version>${spring.web.version}</version>
124                         </dependency>
125                         <dependency>
126                                 <groupId>org.springframework</groupId>
127                                 <artifactId>spring-web</artifactId>
128                                 <version>${spring.web.version}</version>
129                         </dependency>
130                         <dependency>
131                                 <groupId>org.springframework</groupId>
132                                 <artifactId>spring-webmvc</artifactId>
133                                 <version>${spring.web.version}</version>
134                         </dependency>
135                         <dependency>
136                                 <groupId>ch.qos.logback</groupId>
137                                 <artifactId>logback-classic</artifactId>
138                         </dependency>
139                 </dependencies>
140         </dependencyManagement>
141
142         <!-- ============================================================== -->
143         <!-- Define sub-projects (modules) -->
144         <!-- ============================================================== -->
145         <modules>
146                 <module>fproxy</module>
147                 <module>rproxy</module>
148                 <module>tproxy-config</module>
149         </modules>
150
151         <build>
152                 <pluginManagement>
153                         <plugins>
154
155                                 <plugin>
156                                         <artifactId>maven-surefire-plugin</artifactId>
157                                         <version>2.17</version>
158                                         <configuration>
159                                                 <!-- Suppresses parent pom config of Surefire plugin. Has the affect of 
160                                                      setting Surefire file includes back to default and re-enables sidecar
161                                                      unit tests -->
162                                                 <includes combine.self="override"></includes>
163                                         </configuration>
164                                 </plugin>
165
166                                 <plugin>
167                                         <groupId>com.mycila</groupId>
168                                         <artifactId>license-maven-plugin</artifactId>
169                                         <version>3.0</version>
170                                         <configuration>
171                                                 <header>License.txt</header>
172                                                 <includes>
173                                                         <include>src/main/java/**</include>
174                                                         <include>src/test/java/**</include>
175                                                         <include>pom.xml</include>
176                                                 </includes>
177                                                 <skipExistingHeaders>true</skipExistingHeaders>
178                                         </configuration>
179                                         <executions>
180                                                 <execution>
181                                                         <goals>
182                                                                 <!-- Set goal from "check" to "format" to auto update license headers -->
183                                                                 <goal>check</goal>
184                                                         </goals>
185                                                         <phase>validate</phase>
186                                                 </execution>
187                                         </executions>
188                                 </plugin>
189                         </plugins>
190                 </pluginManagement>
191         </build>
192 </project>