blob: 3a8eaa456574329ac87da68e6b7cb22b0be899a5 [file] [log] [blame]
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine
4 ================================================================================
5 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 -->
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040020<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23 <parent>
Guo Ruijing073cc182017-07-31 08:47:35 +000024 <groupId>org.onap.policy.engine</groupId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040025 <artifactId>PolicyEngineSuite</artifactId>
Jessica Wagantalldb597fe2017-11-18 18:50:29 -080026 <version>1.2.0-SNAPSHOT</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040027 </parent>
28 <artifactId>POLICY-SDK-APP</artifactId>
29 <packaging>war</packaging>
30 <build>
31 <plugins>
32 <plugin>
33 <artifactId>maven-war-plugin</artifactId>
34 <version>2.1</version>
35 <configuration>
36 <attachClasses>true</attachClasses>
37 <!-- <warSourceDirectory>WebContent</warSourceDirectory> -->
38 <failOnMissingWebXml>false</failOnMissingWebXml>
39 </configuration>
40 </plugin>
41 <plugin>
42 <artifactId>maven-compiler-plugin</artifactId>
43 <version>3.2</version>
44 <configuration>
45 <source>1.8</source>
46 <target>1.8</target>
47 </configuration>
48 </plugin>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -040049 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-surefire-plugin</artifactId>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -040052 <configuration>
53 <skipTests>${skiptests}</skipTests>
54 <includes>
55 <include>**/Test*.java</include>
56 <include>**/*Test.java</include>
57 <include>**/*TestCase.java</include>
58 </includes>
59 <additionalClasspathElements>
60 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
61 </additionalClasspathElements>
62 <systemPropertyVariables>
63 <container.classpath>classpath:</container.classpath>
64 </systemPropertyVariables>
65 </configuration>
66 </plugin>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040067 </plugins>
68 </build>
69 <properties>
70 <encoding>UTF-8</encoding>
rb714790d00372018-02-21 13:24:04 -050071 <epsdk.version>2.1.0</epsdk.version>
rb71479a322232018-02-08 12:31:44 -050072 <springframework.version>4.2.0.RELEASE</springframework.version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040073 <hibernate.version>4.3.11.Final</hibernate.version>
74 <skipassembly>true</skipassembly>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -040075 <skiptests>false</skiptests>
Pamela Dragosh71d31152017-09-20 13:37:03 -040076 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**,src/main/webapp/app/policyApp/CSS/**/*,src/main/webapp/app/policyApp/libs/**/*</sonar.exclusions>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040077 </properties>
78 <dependencies>
79 <dependency>
Pamela Dragoshb2c21862018-02-20 13:36:48 -050080 <groupId>com.h2database</groupId>
81 <artifactId>h2</artifactId>
82 <scope>test</scope>
83 </dependency>
84 <dependency>
rb714733f0e2b2017-10-19 15:15:48 -040085 <groupId>org.onap.portal.sdk</groupId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040086 <artifactId>epsdk-core</artifactId>
87 <version>${epsdk.version}</version>
rb714733f0e2b2017-10-19 15:15:48 -040088 <exclusions>
89 <exclusion>
90 <groupId>mysql</groupId>
91 <artifactId>mysql-connector-java</artifactId>
92 </exclusion>
93 </exclusions>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -040094 </dependency>
95 <!-- Spring -->
96 <dependency>
97 <groupId>org.springframework</groupId>
98 <artifactId>spring-core</artifactId>
99 <version>${springframework.version}</version>
100 <exclusions>
101 <exclusion>
102 <groupId>commons-logging</groupId>
103 <artifactId>commons-logging</artifactId>
104 </exclusion>
105 </exclusions>
106 </dependency>
107 <dependency>
108 <groupId>org.springframework</groupId>
109 <artifactId>spring-test</artifactId>
110 <version>${springframework.version}</version>
111 </dependency>
112 <dependency>
113 <groupId>org.springframework</groupId>
114 <artifactId>spring-web</artifactId>
115 <version>${springframework.version}</version>
116 </dependency>
117 <dependency>
118 <groupId>org.springframework</groupId>
119 <artifactId>spring-webmvc</artifactId>
120 <version>${springframework.version}</version>
121 </dependency>
122 <dependency>
123 <groupId>org.springframework</groupId>
124 <artifactId>spring-tx</artifactId>
125 <version>${springframework.version}</version>
126 </dependency>
127 <dependency>
128 <groupId>org.springframework</groupId>
129 <artifactId>spring-context-support</artifactId>
130 <version>${springframework.version}</version>
131 </dependency>
132 <!-- Hibernate -->
133 <dependency>
134 <groupId>org.hibernate</groupId>
135 <artifactId>hibernate-core</artifactId>
136 <version>${hibernate.version}</version>
137 </dependency>
138 <dependency>
139 <groupId>org.hibernate</groupId>
140 <artifactId>hibernate-validator</artifactId>
141 <version>5.1.3.Final</version>
142 </dependency>
143 <!-- Javax Mail -->
144 <dependency>
145 <groupId>javax.mail</groupId>
146 <artifactId>mail</artifactId>
147 <version>1.4.7</version>
148 </dependency>
149 <!-- Mapper -->
150 <dependency>
151 <groupId>com.fasterxml.jackson.core</groupId>
152 <artifactId>jackson-annotations</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500153 <version>${jackson.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400154 </dependency>
155 <dependency>
156 <groupId>com.fasterxml.jackson.core</groupId>
157 <artifactId>jackson-core</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500158 <version>${jackson.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400159 </dependency>
160 <dependency>
161 <groupId>com.fasterxml.jackson.core</groupId>
162 <artifactId>jackson-databind</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500163 <version>${jackson.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400164 </dependency>
165 <dependency>
166 <groupId>com.fasterxml.jackson.module</groupId>
167 <artifactId>jackson-module-jaxb-annotations</artifactId>
168 <version>${jackson.version}</version>
169 </dependency>
170 <dependency>
171 <groupId>com.fasterxml.jackson.module</groupId>
172 <artifactId>jackson-module-jsonSchema</artifactId>
173 <version>${jackson.version}</version>
174 </dependency>
175 <dependency>
176 <groupId>com.fasterxml.jackson.dataformat</groupId>
177 <artifactId>jackson-dataformat-xml</artifactId>
178 <version>${jackson.version}</version>
179 </dependency>
180 <!-- Elastic Search -->
181 <dependency>
182 <groupId>org.elasticsearch</groupId>
183 <artifactId>elasticsearch</artifactId>
Pamela Dragosh78232bc2018-03-13 14:50:14 -0400184 <version>6.2.2</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400185 </dependency>
186 <dependency>
187 <groupId>org.json</groupId>
188 <artifactId>json</artifactId>
189 <version>20160212</version>
190 </dependency>
191 <dependency>
192 <groupId>io.searchbox</groupId>
193 <artifactId>jest</artifactId>
194 <version>2.0.0</version>
195 <exclusions>
196 <exclusion>
197 <groupId>commons-logging</groupId>
198 <artifactId>commons-logging</artifactId>
199 </exclusion>
Pamela Dragosh24c3ac32018-03-14 15:12:26 -0400200 <exclusion>
201 <groupId>org.apache.httpcomponents</groupId>
202 <artifactId>httpclient</artifactId>
203 </exclusion>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400204 </exclusions>
205 </dependency>
206 <dependency>
Guo Ruijing073cc182017-07-31 08:47:35 +0000207 <groupId>org.onap.policy.engine</groupId>
208 <artifactId>ONAP-PDP</artifactId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400209 <version>${project.version}</version>
210 <exclusions>
211 <exclusion>
212 <groupId>commons-logging</groupId>
213 <artifactId>commons-logging</artifactId>
214 </exclusion>
215 <exclusion>
216 <groupId>org.apache.httpcomponents</groupId>
217 <artifactId>httpcore</artifactId>
218 </exclusion>
219 <exclusion>
220 <groupId>com.att.aft</groupId>
221 <artifactId>dme2</artifactId>
222 </exclusion>
223 </exclusions>
224 </dependency>
225 <dependency>
226 <groupId>commons-fileupload</groupId>
227 <artifactId>commons-fileupload</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500228 <version>${commons.fileupload.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400229 </dependency>
230 <dependency>
231 <groupId>org.apache.commons</groupId>
232 <artifactId>commons-compress</artifactId>
233 <version>1.8</version>
234 </dependency>
235 <dependency>
236 <groupId>args4j</groupId>
237 <artifactId>args4j</artifactId>
238 <version>2.32</version>
239 </dependency>
240 <dependency>
241 <groupId>org.apache.poi</groupId>
242 <artifactId>poi</artifactId>
243 <version>3.15</version>
244 </dependency>
245 <dependency>
246 <groupId>org.apache.poi</groupId>
247 <artifactId>poi-ooxml</artifactId>
248 <version>3.15</version>
249 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400250 <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans -->
251 <dependency>
252 <groupId>com.esotericsoftware.yamlbeans</groupId>
253 <artifactId>yamlbeans</artifactId>
254 <version>1.08</version>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -0400255 </dependency>
256 <!-- https://mvnrepository.com/artifact/org.easymock/easymock -->
257 <dependency>
258 <groupId>org.easymock</groupId>
259 <artifactId>easymock</artifactId>
260 <version>3.1</version>
261 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400262 <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
263 <dependency>
264 <groupId>org.yaml</groupId>
265 <artifactId>snakeyaml</artifactId>
266 <version>1.16</version>
267 </dependency>
Rodriguez, Cuauhtemoctzin (cr056n)59e3ddb2017-08-04 16:02:20 -0500268 <dependency>
269 <groupId>org.apache.tomcat</groupId>
270 <artifactId>tomcat-jdbc</artifactId>
271 <version>8.0.24</version>
272 </dependency>
273 <dependency>
274 <groupId>org.apache.tomcat</groupId>
275 <artifactId>tomcat-dbcp</artifactId>
276 <version>8.5.9</version>
277 </dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400278 </dependencies>
Guo Ruijing096a3c92017-07-14 09:34:39 +0000279</project>