blob: 6f1091eea6c482280774638cfba4cc07910ef35d [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>
184 <version>2.2.0</version>
185 </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>
200 </exclusions>
201 </dependency>
202 <dependency>
Guo Ruijing073cc182017-07-31 08:47:35 +0000203 <groupId>org.onap.policy.engine</groupId>
204 <artifactId>ONAP-PDP</artifactId>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400205 <version>${project.version}</version>
206 <exclusions>
207 <exclusion>
208 <groupId>commons-logging</groupId>
209 <artifactId>commons-logging</artifactId>
210 </exclusion>
211 <exclusion>
212 <groupId>org.apache.httpcomponents</groupId>
213 <artifactId>httpcore</artifactId>
214 </exclusion>
215 <exclusion>
216 <groupId>com.att.aft</groupId>
217 <artifactId>dme2</artifactId>
218 </exclusion>
219 </exclusions>
220 </dependency>
221 <dependency>
222 <groupId>commons-fileupload</groupId>
223 <artifactId>commons-fileupload</artifactId>
Pamela Dragoshbcdb1e12018-02-07 15:41:30 -0500224 <version>${commons.fileupload.version}</version>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400225 </dependency>
226 <dependency>
227 <groupId>org.apache.commons</groupId>
228 <artifactId>commons-compress</artifactId>
229 <version>1.8</version>
230 </dependency>
231 <dependency>
232 <groupId>args4j</groupId>
233 <artifactId>args4j</artifactId>
234 <version>2.32</version>
235 </dependency>
236 <dependency>
237 <groupId>org.apache.poi</groupId>
238 <artifactId>poi</artifactId>
239 <version>3.15</version>
240 </dependency>
241 <dependency>
242 <groupId>org.apache.poi</groupId>
243 <artifactId>poi-ooxml</artifactId>
244 <version>3.15</version>
245 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400246 <!-- https://mvnrepository.com/artifact/com.esotericsoftware.yamlbeans/yamlbeans -->
247 <dependency>
248 <groupId>com.esotericsoftware.yamlbeans</groupId>
249 <artifactId>yamlbeans</artifactId>
250 <version>1.08</version>
Ravindra Bakkamanthalad9007d62017-05-31 15:54:24 -0400251 </dependency>
252 <!-- https://mvnrepository.com/artifact/org.easymock/easymock -->
253 <dependency>
254 <groupId>org.easymock</groupId>
255 <artifactId>easymock</artifactId>
256 <version>3.1</version>
257 </dependency>
ITSERVICES\rb7147dda032f2017-05-08 22:20:44 -0400258 <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
259 <dependency>
260 <groupId>org.yaml</groupId>
261 <artifactId>snakeyaml</artifactId>
262 <version>1.16</version>
263 </dependency>
Rodriguez, Cuauhtemoctzin (cr056n)59e3ddb2017-08-04 16:02:20 -0500264 <dependency>
265 <groupId>org.apache.tomcat</groupId>
266 <artifactId>tomcat-jdbc</artifactId>
267 <version>8.0.24</version>
268 </dependency>
269 <dependency>
270 <groupId>org.apache.tomcat</groupId>
271 <artifactId>tomcat-dbcp</artifactId>
272 <version>8.5.9</version>
273 </dependency>
ITSERVICES\rb7147e0addf52017-04-25 11:46:00 -0400274 </dependencies>
Guo Ruijing096a3c92017-07-14 09:34:39 +0000275</project>