update logging path for shiro
[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.10-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</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>${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                         <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                 </dependencies>
136         </dependencyManagement>
137
138         <!-- ============================================================== -->
139         <!-- Define sub-projects (modules) -->
140         <!-- ============================================================== -->
141         <modules>
142                 <module>fproxy</module>
143                 <module>rproxy</module>
144                 <module>tproxy-config</module>
145         </modules>
146
147         <build>
148                 <pluginManagement>
149                         <plugins>
150
151                                 <plugin>
152                                         <artifactId>maven-surefire-plugin</artifactId>
153                                         <version>2.17</version>
154                                         <configuration>
155                                                 <!-- Suppresses parent pom config of Surefire plugin. Has the affect of 
156                                                      setting Surefire file includes back to default and re-enables sidecar
157                                                      unit tests -->
158                                                 <includes combine.self="override"></includes>
159                                         </configuration>
160                                 </plugin>
161
162                                 <plugin>
163                                         <groupId>com.mycila</groupId>
164                                         <artifactId>license-maven-plugin</artifactId>
165                                         <version>3.0</version>
166                                         <configuration>
167                                                 <header>License.txt</header>
168                                                 <includes>
169                                                         <include>src/main/java/**</include>
170                                                         <include>src/test/java/**</include>
171                                                         <include>pom.xml</include>
172                                                 </includes>
173                                                 <skipExistingHeaders>true</skipExistingHeaders>
174                                         </configuration>
175                                         <executions>
176                                                 <execution>
177                                                         <goals>
178                                                                 <!-- Set goal from "check" to "format" to auto update license headers -->
179                                                                 <goal>check</goal>
180                                                         </goals>
181                                                         <phase>validate</phase>
182                                                 </execution>
183                                         </executions>
184                                 </plugin>
185                         </plugins>
186                 </pluginManagement>
187         </build>
188 </project>