Release policy/engine
[policy/engine.git] / ONAP-PDP-REST / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
22     <modelVersion>4.0.0</modelVersion>
23     <parent>
24         <groupId>org.onap.policy.engine</groupId>
25         <artifactId>PolicyEngineSuite</artifactId>
26         <version>1.6.1</version>
27     </parent>
28     <artifactId>ONAP-PDP-REST</artifactId>
29     <description>ONAP PDP REST</description>
30     <packaging>war</packaging>
31     <build>
32         <plugins>
33             <plugin>
34                 <artifactId>maven-war-plugin</artifactId>
35                 <configuration>
36                     <attachClasses>true</attachClasses>
37                 </configuration>
38             </plugin>
39         </plugins>
40     </build>
41     <dependencies>
42         <dependency>
43             <groupId>com.h2database</groupId>
44             <artifactId>h2</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.onap.policy.engine</groupId>
49             <artifactId>ONAP-PDP</artifactId>
50             <version>${project.version}</version>
51             <exclusions>
52                 <exclusion>
53                     <groupId>xml-apis</groupId>
54                     <artifactId>xml-apis</artifactId>
55                 </exclusion>
56             </exclusions>
57         </dependency>
58         <dependency>
59             <groupId>commons-logging</groupId>
60             <artifactId>commons-logging</artifactId>
61             <version>1.1.3</version>
62             <exclusions>
63                 <exclusion>
64                     <groupId>javax.servlet</groupId>
65                     <artifactId>servlet-api</artifactId>
66                 </exclusion>
67             </exclusions>
68         </dependency>
69         <dependency>
70             <groupId>log4j</groupId>
71             <artifactId>apache-log4j-extras</artifactId>
72             <version>1.2.17</version>
73         </dependency>
74         <dependency>
75             <groupId>commons-io</groupId>
76             <artifactId>commons-io</artifactId>
77             <version>2.4</version>
78         </dependency>
79         <dependency>
80             <groupId>com.google.guava</groupId>
81             <artifactId>guava</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.mariadb.jdbc</groupId>
85             <artifactId>mariadb-java-client</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.springframework</groupId>
89             <artifactId>spring-test</artifactId>
90             <version>${springframework.version}</version>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.awaitility</groupId>
95             <artifactId>awaitility</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.hsqldb</groupId>
100             <artifactId>hsqldb</artifactId>
101             <version>2.3.2</version>
102         </dependency>
103         <dependency>
104             <groupId>com.sun.jersey</groupId>
105             <artifactId>jersey-client</artifactId>
106             <version>1.18</version>
107         </dependency>
108         <dependency>
109             <groupId>com.sun.jersey</groupId>
110             <artifactId>jersey-core</artifactId>
111             <version>1.18</version>
112         </dependency>
113         <dependency>
114             <groupId>javax.websocket</groupId>
115             <artifactId>javax.websocket-api</artifactId>
116             <version>1.1</version>
117             <scope>provided</scope>
118         </dependency>
119         <dependency>
120             <groupId>com.att.nsa</groupId>
121             <artifactId>cambriaClient</artifactId>
122             <exclusions>
123                 <exclusion>
124                     <artifactId>slf4j-log4j12</artifactId>
125                     <groupId>org.slf4j</groupId>
126                 </exclusion>
127             </exclusions>
128         </dependency>
129         <dependency>
130             <groupId>com.att.aft</groupId>
131             <artifactId>dme2</artifactId>
132             <version>3.1.200-oss</version>
133             <scope>test</scope>
134         </dependency>
135         <dependency>
136             <groupId>org.springframework</groupId>
137             <artifactId>spring-core</artifactId>
138             <version>${springframework.version}</version>
139         </dependency>
140         <dependency>
141             <groupId>org.springframework</groupId>
142             <artifactId>spring-web</artifactId>
143             <version>${springframework.version}</version>
144         </dependency>
145         <dependency>
146             <groupId>org.springframework</groupId>
147             <artifactId>spring-webmvc</artifactId>
148             <version>${springframework.version}</version>
149         </dependency>
150         <dependency>
151             <groupId>io.springfox</groupId>
152             <artifactId>springfox-swagger2</artifactId>
153             <version>2.5.0</version>
154             <exclusions>
155                 <exclusion>
156                     <groupId>com.fasterxml.jackson.core</groupId>
157                     <artifactId>jackson-annotations</artifactId>
158                 </exclusion>
159             </exclusions>
160         </dependency>
161         <dependency>
162             <groupId>io.springfox</groupId>
163             <artifactId>springfox-swagger-ui</artifactId>
164             <version>2.7.0</version>
165         </dependency>
166         <dependency>
167             <groupId>org.apache.commons</groupId>
168             <artifactId>commons-text</artifactId>
169             <version>1.4</version>
170         </dependency>
171         <dependency>
172             <groupId>org.onap.policy.engine</groupId>
173             <artifactId>PolicyEngineAPI</artifactId>
174             <version>${project.version}</version>
175             <exclusions>
176                 <exclusion>
177                     <groupId>org.glassfish.tyrus</groupId>
178                     <artifactId>tyrus-client</artifactId>
179                 </exclusion>
180                 <exclusion>
181                     <groupId>org.glassfish.tyrus</groupId>
182                     <artifactId>tyrus-container-grizzly-client</artifactId>
183                 </exclusion>
184                 <exclusion>
185                     <groupId>javax.persistence</groupId>
186                     <artifactId>persistence-api</artifactId>
187                 </exclusion>
188                 <exclusion>
189                     <groupId>com.att.aft</groupId>
190                     <artifactId>dme2</artifactId>
191                 </exclusion>
192             </exclusions>
193         </dependency>
194     </dependencies>
195 </project>