Release aai/aai-common
[aai/aai-common.git] / aai-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4     ============LICENSE_START=======================================================
5     org.onap.aai
6     ================================================================================
7     Copyright © 2017 AT&T Intellectual Property. All rights reserved.
8     Copyright © 2017 Amdocs
9     ================================================================================
10     Licensed under the Apache License, Version 2.0 (the "License");
11     you may not use this file except in compliance with the License.
12     You may obtain a copy of the License at
13
14        http://www.apache.org/licenses/LICENSE-2.0
15
16     Unless required by applicable law or agreed to in writing, software
17     distributed under the License is distributed on an "AS IS" BASIS,
18     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19     See the License for the specific language governing permissions and
20     limitations under the License.
21     ============LICENSE_END=========================================================
22
23 -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26
27     <parent>
28         <groupId>org.onap.aai.aai-common</groupId>
29         <artifactId>aai-parent</artifactId>
30         <version>1.13.1</version>
31         <relativePath>../aai-parent/pom.xml</relativePath>
32     </parent>
33     <artifactId>aai-utils</artifactId>
34     <name>aai-utils</name>
35
36     <properties>
37         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
38         <logback.version>1.2.3</logback.version>
39     </properties>
40
41     <dependencies>
42         <dependency>
43             <groupId>com.att.eelf</groupId>
44             <artifactId>eelf-core</artifactId>
45             <version>1.0.1-oss</version>
46             <exclusions>
47                 <exclusion>
48                   <groupId>org.powermock</groupId>
49                   <artifactId>powermock-module-junit4</artifactId>
50                 </exclusion>
51                 <exclusion>
52                   <groupId>org.powermock</groupId>
53                   <artifactId>powermock-api-mockito</artifactId>
54                 </exclusion>
55               </exclusions>
56         </dependency>
57         <dependency>
58             <groupId>org.apache.httpcomponents</groupId>
59             <artifactId>httpclient</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>org.eclipse.persistence</groupId>
63             <artifactId>eclipselink</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>javax.xml.bind</groupId>
67             <artifactId>jaxb-api</artifactId>
68         </dependency>
69         <!-- Common logging framework -->
70         <dependency>
71             <groupId>org.onap.aai.logging-service</groupId>
72             <artifactId>common-logging</artifactId>
73         </dependency>
74         <!-- https://mvnrepository.com/artifact/org.springframework/spring-core -->
75         <dependency>
76             <groupId>org.springframework</groupId>
77             <artifactId>spring-core</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>com.fasterxml.jackson.core</groupId>
81             <artifactId>jackson-core</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>com.fasterxml.jackson.core</groupId>
85             <artifactId>jackson-databind</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>junit</groupId>
89             <artifactId>junit</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>ch.qos.logback</groupId>
94             <artifactId>logback-core</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>ch.qos.logback</groupId>
98             <artifactId>logback-classic</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>ch.qos.logback</groupId>
102             <artifactId>logback-access</artifactId>
103         </dependency>
104     </dependencies>
105
106     <build>
107         <plugins>
108             <!-- license plugin -->
109             <plugin>
110                 <groupId>com.mycila</groupId>
111                 <artifactId>license-maven-plugin</artifactId>
112             </plugin>
113
114             <plugin>
115                 <groupId>org.apache.maven.plugins</groupId>
116                 <artifactId>maven-site-plugin</artifactId>
117                 <version>3.3</version>
118             </plugin>
119         </plugins>
120     </build>
121
122 </project>