blob: 317e53c2f60f84652dc1716ea51ab6fea7989d7b [file] [log] [blame]
Pamela Dragosh91d04c62017-02-14 19:41:00 -05001<!--
2 ============LICENSE_START=======================================================
3 ECOMP Policy Engine
4 ================================================================================
5 Copyright (C) 2017 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 -->
20
21<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23 <modelVersion>4.0.0</modelVersion>
24 <parent>
25 <groupId>org.openecomp.policy.engine</groupId>
26 <artifactId>PolicyEngineSuite</artifactId>
27 <version>1.0.0-SNAPSHOT</version>
28 </parent>
29 <groupId>org.openecomp.policy.engine</groupId>
30 <artifactId>ecomp-sdk-app</artifactId>
31 <packaging>war</packaging>
32
33 <properties>
34 <encoding>UTF-8</encoding>
35 <epsdk.version>1.0.0</epsdk.version>
36 <springframework.version>4.2.0.RELEASE</springframework.version>
37 <hibernate.version>4.3.11.Final</hibernate.version>
38 <skipassembly>true</skipassembly>
39 <!-- Tests usually require some setup that maven cannot do, so skip. -->
40 <skiptests>true</skiptests>
41 <jackson.version>2.6.0</jackson.version>
42 </properties>
43
44 <profiles>
45 <!-- disable doclint, a new feature in Java 8, when generating javadoc -->
46 <profile>
47 <id>doclint-java8-disable</id>
48 <activation>
49 <jdk>[1.8,)</jdk>
50 </activation>
51 <build>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.maven.plugins</groupId>
55 <artifactId>maven-javadoc-plugin</artifactId>
56 <version>2.10.4</version>
57 <configuration>
58 <additionalparam>-Xdoclint:none</additionalparam>
59 </configuration>
60 </plugin>
61 </plugins>
62 </build>
63 </profile>
64 </profiles>
65
66 <build>
67 <plugins>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-compiler-plugin</artifactId>
71 <version>3.1</version>
72 <configuration>
73 <source>1.8</source>
74 <target>1.8</target>
75 </configuration>
76 </plugin>
77 <plugin>
78 <groupId>org.apache.maven.plugins</groupId>
79 <artifactId>maven-surefire-plugin</artifactId>
80 <version>2.19.1</version>
81 <configuration>
82 <skipTests>${skiptests}</skipTests>
83 <includes>
84 <include>**/Test*.java</include>
85 <include>**/*Test.java</include>
86 <include>**/*TestCase.java</include>
87 </includes>
88 <additionalClasspathElements>
89 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
90 </additionalClasspathElements>
91 <systemPropertyVariables>
92 <container.classpath>classpath:</container.classpath>
93 </systemPropertyVariables>
94 </configuration>
95 </plugin>
96
97 <plugin>
98 <artifactId>maven-assembly-plugin</artifactId>
99 <configuration>
100 <skipAssembly>${skipassembly}</skipAssembly>
101 <descriptors>
102 <descriptor>${basedir}/distribution.xml</descriptor>
103 </descriptors>
104 </configuration>
105 <executions>
106 <execution>
107 <id>make-assembly</id>
108 <phase>package</phase>
109 <goals>
110 <goal>single</goal>
111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115 </plugins>
116 </build>
117 <dependencies>
118 <!-- SDK components -->
119 <dependency>
120 <groupId>org.openecomp.ecompsdkos</groupId>
121 <artifactId>ecompSDK-core</artifactId>
122 <version>${epsdk.version}</version>
123 </dependency>
124 <dependency>
125 <groupId>org.openecomp.ecompsdkos</groupId>
126 <artifactId>ecompSDK-analytics</artifactId>
127 <version>${epsdk.version}</version>
128 <exclusions>
129 <exclusion>
130 <groupId>com.oracle</groupId>
131 <artifactId>ojdbc6</artifactId>
132 </exclusion>
133 </exclusions>
134 </dependency>
135 <dependency>
136 <groupId>org.openecomp.ecompsdkos</groupId>
137 <artifactId>ecompSDK-workflow</artifactId>
138 <version>${epsdk.version}</version>
139 </dependency>
140 <dependency>
141 <groupId>com.att.eelf</groupId>
142 <artifactId>eelf-core</artifactId>
143 <version>0.0.1</version>
144 </dependency>
145
146 <!-- Spring -->
147 <dependency>
148 <groupId>org.springframework</groupId>
149 <artifactId>spring-core</artifactId>
150 <version>${springframework.version}</version>
151 <exclusions>
152 <exclusion>
153 <groupId>commons-logging</groupId>
154 <artifactId>commons-logging</artifactId>
155 </exclusion>
156 </exclusions>
157 </dependency>
158 <dependency>
159 <groupId>org.springframework</groupId>
160 <artifactId>spring-test</artifactId>
161 <version>${springframework.version}</version>
162 </dependency>
163 <dependency>
164 <groupId>org.springframework</groupId>
165 <artifactId>spring-web</artifactId>
166 <version>${springframework.version}</version>
167 </dependency>
168 <dependency>
169 <groupId>org.springframework</groupId>
170 <artifactId>spring-webmvc</artifactId>
171 <version>${springframework.version}</version>
172 </dependency>
173 <dependency>
174 <groupId>org.springframework</groupId>
175 <artifactId>spring-tx</artifactId>
176 <version>${springframework.version}</version>
177 </dependency>
178 <dependency>
179 <groupId>org.springframework</groupId>
180 <artifactId>spring-context-support</artifactId>
181 <version>${springframework.version}</version>
182 </dependency>
183 <!-- Javax Mail -->
184 <dependency>
185 <groupId>javax.mail</groupId>
186 <artifactId>mail</artifactId>
187 <version>1.4.7</version>
188 </dependency>
189 <!-- bridge to implement commons-logging using slf4j -->
190 <dependency>
191 <groupId>org.slf4j</groupId>
192 <artifactId>jcl-over-slf4j</artifactId>
193 <version>1.7.12</version>
194 </dependency>
195 <dependency>
196 <groupId>org.apache.commons</groupId>
197 <artifactId>commons-compress</artifactId>
198 <version>1.8</version>
199 </dependency>
200 <!-- Mapper -->
201 <dependency>
202 <groupId>com.fasterxml.jackson.core</groupId>
203 <artifactId>jackson-annotations</artifactId>
204 <version>2.6.3</version>
205 </dependency>
206 <dependency>
207 <groupId>com.fasterxml.jackson.core</groupId>
208 <artifactId>jackson-core</artifactId>
209 <version>2.6.3</version>
210 </dependency>
211 <dependency>
212 <groupId>com.fasterxml.jackson.core</groupId>
213 <artifactId>jackson-databind</artifactId>
214 <version>2.6.3</version>
215 </dependency>
216 <dependency>
217 <groupId>com.fasterxml.jackson.module</groupId>
218 <artifactId>jackson-module-jaxb-annotations</artifactId>
219 <version>${jackson.version}</version>
220 </dependency>
221 <dependency>
222 <groupId>com.fasterxml.jackson.module</groupId>
223 <artifactId>jackson-module-jsonSchema</artifactId>
224 <version>${jackson.version}</version>
225 </dependency>
226 <dependency>
227 <groupId>com.fasterxml.jackson.dataformat</groupId>
228 <artifactId>jackson-dataformat-xml</artifactId>
229 <version>${jackson.version}</version>
230 </dependency>
231 <dependency>
232 <groupId>com.mchange</groupId>
233 <artifactId>c3p0</artifactId>
234 <version>0.9.5.2</version>
235 </dependency>
236 <dependency>
237 <groupId>args4j</groupId>
238 <artifactId>args4j</artifactId>
239 <version>2.32</version>
240 </dependency>
241 <!-- Maria DB -->
242 <dependency>
243 <groupId>org.mariadb.jdbc</groupId>
244 <artifactId>mariadb-java-client</artifactId>
245 <version>1.2.3</version>
246 </dependency>
247 <dependency>
248 <groupId>commons-dbcp</groupId>
249 <artifactId>commons-dbcp</artifactId>
250 <version>1.4</version>
251 </dependency>
252 <dependency>
253 <groupId>org.eclipse.jgit</groupId>
254 <artifactId>org.eclipse.jgit</artifactId>
255 <version>3.2.0.201312181205-r</version>
256 </dependency>
257 <!-- Quartz -->
258 <dependency>
259 <groupId>org.quartz-scheduler</groupId>
260 <artifactId>quartz</artifactId>
261 <version>2.2.1</version>
262 <exclusions>
263 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
264 <exclusion>
265 <groupId>c3p0</groupId>
266 <artifactId>c3p0</artifactId>
267 </exclusion>
268 </exclusions>
269 </dependency>
270 <dependency>
271 <groupId>javax.servlet</groupId>
272 <artifactId>javax.servlet-api</artifactId>
273 <version>3.1.0</version>
274 </dependency>
275 <dependency>
276 <groupId>junit</groupId>
277 <artifactId>junit</artifactId>
278 <version>4.12</version>
279 </dependency>
280 <!-- Elastic Search -->
281 <dependency>
282 <groupId>org.elasticsearch</groupId>
283 <artifactId>elasticsearch</artifactId>
284 <version>2.2.0</version>
285 </dependency>
286 <dependency>
287 <groupId>org.json</groupId>
288 <artifactId>json</artifactId>
289 <version>20160212</version>
290 </dependency>
291 <dependency>
292 <groupId>io.searchbox</groupId>
293 <artifactId>jest</artifactId>
294 <version>2.0.0</version>
295 <exclusions>
296 <exclusion>
297 <groupId>commons-logging</groupId>
298 <artifactId>commons-logging</artifactId>
299 </exclusion>
300 </exclusions>
301 </dependency>
302
303 <dependency>
304 <groupId>org.openecomp.policy.engine</groupId>
305 <artifactId>ECOMP-PDP</artifactId>
306 <version>${project.version}</version>
307 <exclusions>
308 <exclusion>
309 <groupId>commons-logging</groupId>
310 <artifactId>commons-logging</artifactId>
311 </exclusion>
312 <exclusion>
313 <groupId>org.apache.httpcomponents</groupId>
314 <artifactId>httpcore</artifactId>
315 </exclusion>
316 </exclusions>
317 </dependency>
318 <dependency>
319 <groupId>commons-fileupload</groupId>
320 <artifactId>commons-fileupload</artifactId>
321 <version>1.3.1</version>
322 </dependency>
323 </dependencies>
324</project>