Release aai/aai-common
[aai/aai-common.git] / aai-rest / 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"
25          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27     <modelVersion>4.0.0</modelVersion>
28
29     <parent>
30         <groupId>org.onap.aai.aai-common</groupId>
31         <artifactId>aai-parent</artifactId>
32         <version>1.8.2</version>
33         <relativePath>../aai-parent/pom.xml</relativePath>
34     </parent>
35     <artifactId>aai-rest</artifactId>
36     <name>aai-rest</name>
37
38     <properties>
39         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
40         <eelf.core.version>1.0.1-oss</eelf.core.version>
41         <spring.boot.starter.web.version>1.5.21.RELEASE</spring.boot.starter.web.version>
42         <spring.boot.starter.parent.version>1.5.21.RELEASE</spring.boot.starter.parent.version>
43         <spring.security.version>1.0.8.RELEASE</spring.security.version>
44     </properties>
45
46     <dependencies>
47         <dependency>
48             <groupId>com.att.eelf</groupId>
49             <artifactId>eelf-core</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.springframework.boot</groupId>
53             <artifactId>spring-boot-starter-web</artifactId>
54             <exclusions>
55                 <exclusion>
56                     <groupId>org.springframework.boot</groupId>
57                     <artifactId>spring-boot-starter-tomcat</artifactId>
58                 </exclusion>
59                 <exclusion>
60                     <groupId>org.slf4j</groupId>
61                     <artifactId>log4j-over-slf4j</artifactId>
62                 </exclusion>
63             </exclusions>
64         </dependency>
65         <dependency>
66             <groupId>org.springframework.boot</groupId>
67             <artifactId>spring-boot-starter-jetty</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>org.springframework.boot</groupId>
71             <artifactId>spring-boot-starter-jersey</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>javax.ws.rs</groupId>
75             <artifactId>javax.ws.rs-api</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>org.apache.httpcomponents</groupId>
79             <artifactId>httpclient</artifactId>
80         </dependency>
81         <!--
82             Explicitly stating the security spring framework and
83             exclude the bouncy castle since that is somehow overwriting
84             our p12 file decryption that's built into java security
85             This will cause the password is incorrect
86             This needs to be added back if org.bouncy castle dependency
87             sneaks backs in and causing issues with the two way ssl
88         -->
89         <dependency>
90             <groupId>org.springframework.security</groupId>
91             <artifactId>spring-security-rsa</artifactId>
92             <exclusions>
93                 <exclusion>
94                     <groupId>org.bouncycastle</groupId>
95                     <artifactId>bcpkix-jdk15on</artifactId>
96                 </exclusion>
97             </exclusions>
98         </dependency>
99         <dependency>
100             <groupId>org.springframework.boot</groupId>
101             <artifactId>spring-boot-starter-test</artifactId>
102             <scope>test</scope>
103         </dependency>
104         <dependency>
105             <groupId>org.springframework.boot</groupId>
106             <artifactId>spring-boot-test</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.onap.aai.aai-common</groupId>
111             <artifactId>aai-els-onap-logging</artifactId>
112             <scope>compile</scope>
113             <exclusions>
114                 <exclusion>
115                     <groupId>javax.ws.rs</groupId>
116                     <artifactId>javax.ws.rs-api</artifactId>
117                 </exclusion>
118             </exclusions>
119         </dependency>
120     </dependencies>
121
122 </project>