Upgrade to policy/parent
[policy/engine.git] / ONAP-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 <!-- Apache Maven 2 POM generated by Apache Ivy http://ant.apache.org/ivy/ 
22         Apache Ivy version: 2.0.0-beta1 20071206070608 -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0"
24     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
26     <modelVersion>4.0.0</modelVersion>
27     <parent>
28         <groupId>org.onap.policy.engine</groupId>
29         <artifactId>PolicyEngineSuite</artifactId>
30         <version>1.3.0-SNAPSHOT</version>
31     </parent>
32     <artifactId>ONAP-REST</artifactId>
33     <description>ONAP REST</description>
34     <packaging>jar</packaging>
35
36     <properties>
37         <springframework.version>4.3.15.RELEASE</springframework.version>
38         <hibernate.version>4.3.10.Final</hibernate.version>
39     </properties>
40
41     <dependencies>
42         <dependency>
43             <groupId>org.yaml</groupId>
44             <artifactId>snakeyaml</artifactId>
45             <version>1.16</version>
46         </dependency>
47         <dependency>
48             <groupId>com.h2database</groupId>
49             <artifactId>h2</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.onap.policy.engine</groupId>
54             <version>${project.version}</version>
55             <artifactId>ONAP-XACML</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.onap.policy.engine</groupId>
59             <artifactId>PolicyEngineAPI</artifactId>
60             <version>${project.version}</version>
61             <exclusions>
62                 <exclusion>
63                     <groupId>org.glassfish.tyrus</groupId>
64                     <artifactId>tyrus-client</artifactId>
65                 </exclusion>
66                 <exclusion>
67                     <groupId>org.glassfish.tyrus</groupId>
68                     <artifactId>tyrus-container-grizzly-client</artifactId>
69                 </exclusion>
70                 <exclusion>
71                     <groupId>javax.persistence</groupId>
72                     <artifactId>persistence-api</artifactId>
73                 </exclusion>
74                 <exclusion>
75                     <groupId>com.att.aft</groupId>
76                     <artifactId>dme2</artifactId>
77                 </exclusion>
78             </exclusions>
79         </dependency>
80         <dependency>
81             <groupId>javax.servlet</groupId>
82             <artifactId>javax.servlet-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>commons-logging</groupId>
86             <artifactId>commons-logging</artifactId>
87             <version>1.1.3</version>
88             <exclusions>
89                 <exclusion>
90                     <groupId>javax.servlet</groupId>
91                     <artifactId>servlet-api</artifactId>
92                 </exclusion>
93             </exclusions>
94         </dependency>
95         <dependency>
96             <groupId>com.google.guava</groupId>
97             <artifactId>guava</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>com.google.code.gson</groupId>
101             <artifactId>gson</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.eclipse.emf</groupId>
105             <artifactId>org.eclipse.emf.ecore.xmi</artifactId>
106             <version>2.11.0-v20150123-0347</version>
107         </dependency>
108         <dependency>
109             <groupId>org.eclipse.emf</groupId>
110             <artifactId>org.eclipse.emf.ecore</artifactId>
111             <version>2.11.0-v20150123-0347</version>
112         </dependency>
113         <dependency>
114             <groupId>org.eclipse.emf</groupId>
115             <artifactId>org.eclipse.emf.common</artifactId>
116             <version>2.11.0-v20150123-0347</version>
117         </dependency>
118         <dependency>
119             <groupId>org.json</groupId>
120             <artifactId>json</artifactId>
121             <version>[20090211,)</version>
122         </dependency>
123         <!-- Spring -->
124         <dependency>
125             <groupId>org.springframework</groupId>
126             <artifactId>spring-test</artifactId>
127             <version>${springframework.version}</version>
128         </dependency>
129         <dependency>
130             <groupId>org.springframework</groupId>
131             <artifactId>spring-core</artifactId>
132             <version>${springframework.version}</version>
133         </dependency>
134         <dependency>
135             <groupId>org.springframework</groupId>
136             <artifactId>spring-web</artifactId>
137             <version>${springframework.version}</version>
138         </dependency>
139         <dependency>
140             <groupId>org.springframework</groupId>
141             <artifactId>spring-webmvc</artifactId>
142             <version>${springframework.version}</version>
143         </dependency>
144         <dependency>
145             <groupId>org.springframework</groupId>
146             <artifactId>spring-tx</artifactId>
147             <version>${springframework.version}</version>
148         </dependency>
149         <dependency>
150             <groupId>org.springframework</groupId>
151             <artifactId>spring-context-support</artifactId>
152             <version>${springframework.version}</version>
153         </dependency>
154         <dependency>
155             <groupId>org.springframework</groupId>
156             <artifactId>spring-orm</artifactId>
157             <version>${springframework.version}</version>
158         </dependency>
159         <!-- Hibernate -->
160         <dependency>
161             <groupId>org.hibernate</groupId>
162             <artifactId>hibernate-core</artifactId>
163             <version>${hibernate.version}</version>
164         </dependency>
165         <dependency>
166             <groupId>org.hibernate</groupId>
167             <artifactId>hibernate-validator</artifactId>
168             <version>5.4.2.Final</version>
169         </dependency>
170         <dependency>
171             <groupId>org.apache.tomcat</groupId>
172             <artifactId>tomcat-dbcp</artifactId>
173             <version>8.5.9</version>
174         </dependency>
175     </dependencies>
176 </project>