[AAI-2175] Change aai champ container processes to run as non-root on the host
[aai/champ.git] / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 org.onap.aai
4 ================================================================================
5 Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6 Copyright © 2017-2018 Amdocs
7 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12       http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.oparent</groupId>
27         <artifactId>oparent</artifactId>
28         <version>1.2.0</version>
29     </parent>
30
31     <groupId>org.onap.aai</groupId>
32     <artifactId>champ</artifactId>
33     <name>aai-champ</name>
34     <packaging>pom</packaging>
35     <version>1.4.1-SNAPSHOT</version>
36
37     <properties>
38         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
39         <event.client.version>1.4.0</event.client.version>
40         <!-- Minimum code coverage percentage. Please update this figure as coverage increases to prevent any drops in
41          coverage caused by new changes. Note that this figure cannot be lower than the ONAP requirement of 0.55 -->
42         <jacoco.line.coverage.limit>0.57</jacoco.line.coverage.limit>
43         <jacoco.report.directory>${project.build.directory}/code-coverage</jacoco.report.directory>
44     </properties>
45
46     <modules>
47         <module>champ-lib</module>
48         <module>champ-service-deps-janus</module>
49         <module>champ-service-deps-titan</module>
50         <module>champ-service</module>
51     </modules>
52
53     <build>
54         <plugins>
55             <plugin>
56                 <groupId>org.apache.maven.plugins</groupId>
57                 <artifactId>maven-deploy-plugin</artifactId>
58                 <configuration>
59                     <skip>true</skip>
60                 </configuration>
61             </plugin>
62             <plugin>
63                 <groupId>org.jacoco</groupId>
64                 <artifactId>jacoco-maven-plugin</artifactId>
65                 <executions>
66                     <execution>
67                         <id>default-check</id>
68                         <goals>
69                             <goal>check</goal>
70                         </goals>
71                         <configuration>
72                             <dataFile>${jacoco.report.directory}/jacoco-ut.exec</dataFile>
73                             <rules>
74                                 <!--  implementation is needed only for Maven 2  -->
75                                 <rule implementation="org.jacoco.maven.RuleConfiguration">
76                                     <element>BUNDLE</element>
77                                     <limits>
78                                         <limit implementation="org.jacoco.report.check.Limit">
79                                             <counter>LINE</counter>
80                                             <value>COVEREDRATIO</value>
81                                             <minimum>${jacoco.line.coverage.limit}</minimum>
82                                         </limit>
83                                     </limits>
84                                 </rule>
85                             </rules>
86                         </configuration>
87                     </execution>
88                 </executions>
89             </plugin>
90         </plugins>
91     </build>
92
93     <dependencyManagement>
94         <dependencies>
95
96             <dependency>
97                 <groupId>org.onap.aai.event-client</groupId>
98                 <artifactId>event-client-api</artifactId>
99                 <version>${event.client.version}</version>
100             </dependency>
101
102             <dependency>
103                 <groupId>org.onap.aai.event-client</groupId>
104                 <artifactId>event-client-dmaap</artifactId>
105                 <version>${event.client.version}</version>
106             </dependency>
107
108             <dependency>
109                 <groupId>org.onap.aai.event-client</groupId>
110                 <artifactId>event-client-kafka</artifactId>
111                 <version>${event.client.version}</version>
112             </dependency>
113
114                 <dependency>
115                         <groupId>org.onap.aai.event-client</groupId>
116                         <artifactId>event-client-rabbitmq</artifactId>
117                         <version>${event.client.version}</version>
118                 </dependency>
119             <dependency>
120                 <groupId>commons-collections</groupId>
121                 <artifactId>commons-collections</artifactId>
122                 <version>20040616</version>
123             </dependency>
124
125             <dependency>
126                 <groupId>ch.qos.logback</groupId>
127                 <artifactId>logback-classic</artifactId>
128                 <version>1.2.3</version>
129             </dependency>
130
131             <dependency>
132                 <groupId>ch.qos.logback</groupId>
133                 <artifactId>logback-core</artifactId>
134                 <version>1.2.3</version>
135             </dependency>
136
137             <dependency>
138                 <groupId>org.apache.hadoop</groupId>
139                 <artifactId>hadoop-common</artifactId>
140                 <version>2.7.7</version>
141             </dependency>
142
143             <dependency>
144                 <groupId>org.apache.hbase</groupId>
145                 <artifactId>hbase-client</artifactId>
146                 <version>1.0.2</version>
147             </dependency>
148
149             <dependency>
150                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
151                 <artifactId>dmaapClient</artifactId>
152                 <version>1.1.5</version>
153             </dependency>
154
155             <dependency>
156                 <groupId>io.netty</groupId>
157                 <artifactId>netty-all</artifactId>
158                 <version>4.1.24.Final</version>
159             </dependency>
160
161             <dependency>
162                 <groupId>io.netty</groupId>
163                 <artifactId>netty</artifactId>
164                 <version>3.10.6.Final</version>
165             </dependency>
166
167             <dependency>
168                 <groupId>org.apache.zookeeper</groupId>
169                 <artifactId>zookeeper</artifactId>
170                 <version>3.4.12</version>
171             </dependency>
172
173             <dependency>
174                 <groupId>com.fasterxml.jackson.core</groupId>
175                 <artifactId>jackson-core</artifactId>
176                 <version>2.8.11</version>
177             </dependency>
178
179             <dependency>
180                 <groupId>com.fasterxml.jackson.core</groupId>
181                 <artifactId>jackson-databind</artifactId>
182                 <version>2.8.11.1</version>
183             </dependency>
184
185             <dependency>
186                 <groupId>org.apache.httpcomponents</groupId>
187                 <artifactId>httpclient-cache</artifactId>
188                 <version>4.5.3</version>
189             </dependency>
190
191             <dependency>
192                 <groupId>org.apache.httpcomponents</groupId>
193                 <artifactId>httpclient</artifactId>
194                 <version>4.5.3</version>
195             </dependency>
196
197             <dependency>
198                 <groupId>org.codehaus.groovy</groupId>
199                 <artifactId>groovy</artifactId>
200                 <version>2.4.15</version>
201             </dependency>
202         </dependencies>
203     </dependencyManagement>
204
205     <distributionManagement>
206         <repository>
207             <id>ecomp-releases</id>
208             <name>ECOMP Release Repository</name>
209             <url>${onap.nexus.url}/content/repositories/releases/</url>
210         </repository>
211         <snapshotRepository>
212             <id>ecomp-snapshots</id>
213             <name>ECOMP Snapshot Repository</name>
214             <url>${onap.nexus.url}/content/repositories/snapshots/</url>
215         </snapshotRepository>
216     </distributionManagement>
217
218 </project>