blob: b3d406692efdf98bbf12944f7bc8a65e1ef5e920 [file] [log] [blame]
Pamela Dragosh91d04c62017-02-14 19:41:00 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ECOMP Policy Engine
5 ================================================================================
6 Copyright (C) 2017 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
22
23<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25
26 <modelVersion>4.0.0</modelVersion>
27 <groupId>org.openecomp.policy.engine</groupId>
28 <artifactId>ECOMP-PAP-REST</artifactId>
29 <description>ECOMP-PAP-REST</description>
30 <packaging>war</packaging>
31 <parent>
32 <groupId>org.openecomp.policy.engine</groupId>
33 <artifactId>PolicyEngineSuite</artifactId>
34 <version>1.0.0-SNAPSHOT</version>
35 </parent>
36 <build>
37 <plugins>
38 <plugin>
39 <artifactId>maven-war-plugin</artifactId>
40 <version>2.1</version>
41 <configuration>
42 <attachClasses>true</attachClasses>
43 <webResources>
44 <webResource>
45 <directory>src/main/java/</directory>
46 <targetPath>WEB-INF/classes/</targetPath>
47 <includes>
48 <include>hibernate.cfg.xml</include>
49 </includes>
50 </webResource>
51 </webResources>
52 </configuration>
53 </plugin>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 <version>3.2</version>
58 <configuration>
59 <source>1.8</source>
60 <target>1.8</target>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65 <dependencies>
66 <dependency>
67 <!-- To support integrity-audit audit of BackupMonitorEntity table -->
68 <groupId>org.openecomp.policy.engine</groupId>
69 <artifactId>PolicyEngineUtils</artifactId>
70 <version>${project.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.commons</groupId>
74 <artifactId>commons-lang3</artifactId>
75 <version>3.4</version>
76 </dependency>
77 <dependency>
78 <groupId>org.openecomp.policy.engine</groupId>
79 <artifactId>ECOMP-PDP</artifactId>
80 <version>${project.version}</version>
81 </dependency>
82 <dependency>
83 <groupId>org.openecomp.policy.common</groupId>
84 <artifactId>ECOMP-Logging</artifactId>
85 <version>${common-modules.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>javax.servlet</groupId>
89 <artifactId>javax.servlet-api</artifactId>
90 <version>3.1.0</version>
91 </dependency>
92 <dependency>
93 <groupId>commons-logging</groupId>
94 <artifactId>commons-logging</artifactId>
95 <version>1.1.3</version>
96 <exclusions>
97 <exclusion>
98 <groupId>javax.servlet</groupId>
99 <artifactId>servlet-api</artifactId>
100 </exclusion>
101 </exclusions>
102 </dependency>
103 <dependency>
104 <groupId>org.apache.commons</groupId>
105 <artifactId>commons-compress</artifactId>
106 <version>1.8</version>
107 </dependency>
108 <dependency>
109 <groupId>commons-fileupload</groupId>
110 <artifactId>commons-fileupload</artifactId>
111 <version>1.3.1</version>
112 </dependency>
113 <dependency>
114 <groupId>log4j</groupId>
115 <artifactId>apache-log4j-extras</artifactId>
116 <version>1.2.17</version>
117 </dependency>
118 <dependency>
119 <groupId>commons-io</groupId>
120 <artifactId>commons-io</artifactId>
121 <version>2.4</version>
122 </dependency>
123 <dependency>
124 <groupId>io.netty</groupId>
125 <artifactId>netty</artifactId>
126 <version>3.5.0.Final</version>
127 </dependency>
128 <dependency>
129 <groupId>com.google.guava</groupId>
130 <artifactId>guava</artifactId>
131 <version>14.0.1</version>
132 </dependency>
133 <dependency>
134 <groupId>com.fasterxml.jackson.core</groupId>
135 <artifactId>jackson-databind</artifactId>
136 <version>2.3.0-rc1</version>
137 </dependency>
138 <dependency>
139 <groupId>org.json</groupId>
140 <artifactId>json</artifactId>
141 <version>[20090211,)</version>
142 </dependency>
143 <dependency>
144 <groupId>org.eclipse.jgit</groupId>
145 <artifactId>org.eclipse.jgit</artifactId>
146 <version>3.2.0.201312181205-r</version>
147 </dependency>
148 <dependency>
149 <groupId>junit</groupId>
150 <artifactId>junit</artifactId>
151 <version>4.11</version>
152 <scope>test</scope>
153 </dependency>
154 <dependency>
155 <groupId>org.apache.tomcat</groupId>
156 <artifactId>tomcat-jdbc</artifactId>
157 <version>8.0.24</version>
158 </dependency>
159 <dependency>
160 <groupId>com.h2database</groupId>
161 <artifactId>h2</artifactId>
162 <version>[1.4.186,)</version>
163 </dependency>
164 <dependency>
165 <groupId>com.github.fge</groupId>
166 <artifactId>json-patch</artifactId>
167 <version>1.9</version>
168 </dependency>
169 <dependency>
170 <groupId>org.eclipse.persistence</groupId>
171 <artifactId>javax.persistence</artifactId>
172 <version>2.1.0</version>
173 </dependency>
174 <dependency>
175 <groupId>org.eclipse.persistence</groupId>
176 <artifactId>eclipselink</artifactId>
177 <version>2.6.0</version>
178 </dependency>
179
180 <dependency>
181 <groupId>mysql</groupId>
182 <artifactId>mysql-connector-java</artifactId>
183 <version>5.1.30</version>
184 </dependency>
185 <dependency>
186 <groupId>org.mariadb.jdbc</groupId>
187 <artifactId>mariadb-java-client</artifactId>
188 <version>1.2.3</version>
189 </dependency>
190 <dependency>
191 <groupId>org.mockito</groupId>
192 <artifactId>mockito-core</artifactId>
193 <version>1.9.5</version>
194 </dependency>
195 <dependency>
196 <groupId>javax.servlet</groupId>
197 <artifactId>javax.servlet-api</artifactId>
198 <version>3.0.1</version>
199 <scope>provided</scope>
200 </dependency>
201 <dependency>
202 <groupId>org.springframework</groupId>
203 <artifactId>spring-mock</artifactId>
204 <version>2.0.8</version>
205 </dependency>
206 <dependency>
207 <groupId>com.mockrunner</groupId>
208 <artifactId>mockrunner</artifactId>
209 <version>0.3.1</version>
210 </dependency>
211 <!-- Spring -->
212 <dependency>
213 <groupId>org.springframework</groupId>
214 <artifactId>spring-core</artifactId>
215 <version>${springframework.version}</version>
216 </dependency>
217 <dependency>
218 <groupId>org.springframework</groupId>
219 <artifactId>spring-web</artifactId>
220 <version>${springframework.version}</version>
221 </dependency>
222 <dependency>
223 <groupId>org.springframework</groupId>
224 <artifactId>spring-webmvc</artifactId>
225 <version>${springframework.version}</version>
226 </dependency>
227 <dependency>
228 <groupId>org.springframework</groupId>
229 <artifactId>spring-tx</artifactId>
230 <version>${springframework.version}</version>
231 </dependency>
232 <dependency>
233 <groupId>org.springframework</groupId>
234 <artifactId>spring-context-support</artifactId>
235 <version>${springframework.version}</version>
236 </dependency>
237 <dependency>
238 <groupId>org.springframework</groupId>
239 <artifactId>spring-orm</artifactId>
240 <version>${springframework.version}</version>
241 </dependency>
242 <!-- Hibernate -->
243 <dependency>
244 <groupId>org.hibernate</groupId>
245 <artifactId>hibernate-core</artifactId>
246 <version>${hibernate.version}</version>
247 </dependency>
248 <dependency>
249 <groupId>org.hibernate</groupId>
250 <artifactId>hibernate-validator</artifactId>
251 <version>5.1.3.Final</version>
252 </dependency>
253 </dependencies>
254 <properties>
255 <springframework.version>4.2.0.RELEASE</springframework.version>
256 <hibernate.version>4.3.11.Final</hibernate.version>
257 <projectversion>2.0.2</projectversion>
258 </properties>
259</project>