blob: 908fcce2766686c212d1b447459f1df5c18fbc2f [file] [log] [blame]
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <parent>
Rob Daugherty9de3ce02017-08-04 12:15:51 -04004 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07005 <artifactId>bpmn</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08006 <version>1.2.0-SNAPSHOT</version>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <artifactId>MSOInfrastructureBPMN</artifactId>
10 <packaging>war</packaging>
11
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-war-plugin</artifactId>
17 <version>2.3</version>
18 <configuration>
19 <failOnMissingWebXml>false</failOnMissingWebXml>
20 </configuration>
21 </plugin>
22 <plugin>
23 <groupId>org.apache.maven.plugins</groupId>
24 <artifactId>maven-jar-plugin</artifactId>
25 <version>2.6</version>
26 <executions>
27 <execution>
28 <id>default-jar</id>
29 <phase>package</phase>
30 <goals>
31 <goal>jar</goal>
32 </goals>
33 <configuration>
34 <excludes>
35 <exclude>org/openecomp/mso/bpmn/infrastructure/MSOInfrastructureApplication.class</exclude>
36<!-- <exclude>META-INF/</exclude> -->
37 </excludes>
38 </configuration>
39 </execution>
40 </executions>
41 </plugin>
42 <plugin>
43 <groupId>org.codehaus.mojo</groupId>
44 <artifactId>build-helper-maven-plugin</artifactId>
45 <version>3.0.0</version>
46 <executions>
47 <execution>
48 <goals>
49 <goal>attach-artifact</goal>
50 </goals>
51 <phase>package</phase>
52 <configuration>
53 <artifacts>
54 <artifact>
55 <file>${project.build.directory}/${project.artifactId}-${project.version}.jar</file>
56 <type>jar</type>
57 </artifact>
58 </artifacts>
59 </configuration>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.cxf</groupId>
65 <artifactId>cxf-codegen-plugin</artifactId>
66 <version>2.5.2</version>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-eclipse-plugin</artifactId>
71 <version>2.8</version>
72 <configuration>
73 <additionalProjectnatures>
74 <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
75 </additionalProjectnatures>
76 <sourceIncludes>
77 <sourceInclude>**/*.groovy</sourceInclude>
78 </sourceIncludes>
79 </configuration>
80 </plugin>
81 <plugin>
82 <artifactId>maven-antrun-plugin</artifactId>
83 <executions>
84 <execution>
85 <id>compile</id>
86 <phase>compile</phase>
87 <configuration>
88 <tasks>
89 <mkdir dir="${basedir}/src/main/groovy" />
90 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc">
91 <classpath refid="maven.compile.classpath" />
92 </taskdef>
93 <mkdir dir="${project.build.outputDirectory}" />
94 <groovyc destdir="${project.build.outputDirectory}"
95 srcdir="${basedir}/src/main/groovy/" listfiles="true">
96 <classpath refid="maven.compile.classpath" />
97 </groovyc>
98 </tasks>
99 </configuration>
100 <goals>
101 <goal>run</goal>
102 </goals>
103 </execution>
104 <execution>
105 <id>test-compile</id>
106 <phase>test-compile</phase>
107 <configuration>
108 <tasks>
109 <mkdir dir="${basedir}/src/test/groovy" />
110 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc">
111 <classpath refid="maven.test.classpath" />
112 </taskdef>
113 <mkdir dir="${project.build.testOutputDirectory}" />
114 <groovyc destdir="${project.build.testOutputDirectory}"
115 srcdir="${basedir}/src/test/groovy/" listfiles="true">
116 <classpath refid="maven.test.classpath" />
117 </groovyc>
118 </tasks>
119 </configuration>
120 <goals>
121 <goal>run</goal>
122 </goals>
123 </execution>
124 </executions>
125 </plugin>
126
127 <plugin>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-dependency-plugin</artifactId>
130 </plugin>
131 <plugin>
132 <artifactId>maven-failsafe-plugin</artifactId>
133 <version>2.6</version>
134 <executions>
135 <execution>
136 <goals>
137 <goal>integration-test</goal>
138 <goal>verify</goal>
139 </goals>
140 </execution>
141 </executions>
142 </plugin>
143 </plugins>
144 <pluginManagement>
145 <plugins>
146 <!--This plugin's configuration is used to store Eclipse m2e settings
147 only. It has no influence on the Maven build itself. -->
148 <plugin>
149 <groupId>org.eclipse.m2e</groupId>
150 <artifactId>lifecycle-mapping</artifactId>
151 <version>1.0.0</version>
152 <configuration>
153 <lifecycleMappingMetadata>
154 <pluginExecutions>
155 <pluginExecution>
156 <pluginExecutionFilter>
157 <groupId>
158 org.apache.maven.plugins
159 </groupId>
160 <artifactId>
161 maven-antrun-plugin
162 </artifactId>
163 <versionRange>
164 [1.3,)
165 </versionRange>
166 <goals>
167 <goal>run</goal>
168 </goals>
169 </pluginExecutionFilter>
170 <action>
171 <ignore></ignore>
172 </action>
173 </pluginExecution>
174 </pluginExecutions>
175 </lifecycleMappingMetadata>
176 </configuration>
177 </plugin>
178 </plugins>
179 </pluginManagement>
180 </build>
181
182 <dependencies>
183 <dependency>
184 <!-- process engine, in compile scope to include it in the war file -->
185 <groupId>org.camunda.bpm</groupId>
186 <artifactId>camunda-engine</artifactId>
187 <scope>compile</scope>
188 <exclusions>
189 <exclusion>
190 <groupId>org.slf4j</groupId>
191 <artifactId>slf4j-api</artifactId>
192 </exclusion>
193 </exclusions>
194 </dependency>
195 <!-- Using the `DefaultEjbProcessApplication` result in: `java.sql.SQLException:
196 You cannot commit during a managed transaction!` -->
197 <dependency>
198 <!-- CDI integration, needs to be included in WAR, otherwise CDI can not
199 work correctly -->
200 <groupId>org.camunda.bpm</groupId>
201 <artifactId>camunda-engine-cdi</artifactId>
202 </dependency>
203
204 <dependency>
205 <!-- AssertJ Testing Library -->
206 <groupId>org.camunda.bpm.extension</groupId>
207 <artifactId>camunda-bpm-assert</artifactId>
208 <version>1.2</version>
209 <scope>test</scope>
210 </dependency>
211 <dependency>
212 <groupId>org.mockito</groupId>
213 <artifactId>mockito-all</artifactId>
214 <version>1.10.19</version>
215 <scope>test</scope>
216 </dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400217
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700218
219 <!-- Spin dataformat support, in compile scope to include it in the war
220 file -->
221 <dependency>
222 <groupId>org.camunda.spin</groupId>
223 <artifactId>camunda-spin-dataformat-all</artifactId>
224 <scope>compile</scope>
225 </dependency>
226 <dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400227 <artifactId>camunda-spin-dataformat-all</artifactId>
228 <groupId>org.camunda.spin</groupId>
229 <scope>compile</scope>
230 </dependency>
231 <dependency>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700232 <groupId>org.camunda.bpm</groupId>
233 <artifactId>camunda-engine-plugin-spin</artifactId>
234 <scope>compile</scope>
235 </dependency>
236
237 <dependency>
238 <groupId>org.camunda.bpm</groupId>
239 <artifactId>camunda-engine-plugin-connect</artifactId>
240 <scope>compile</scope>
241 </dependency>
242
243 <dependency>
244 <!-- Bootstrap for styling via Webjars project -->
245 <groupId>org.webjars</groupId>
246 <artifactId>bootstrap</artifactId>
247 <version>2.3.2</version>
248 </dependency>
249
250 <dependency>
251 <groupId>org.jboss.resteasy</groupId>
252 <artifactId>resteasy-client</artifactId>
253 <version>3.0.19.Final</version>
254 <scope>provided</scope>
255 <exclusions>
256 <exclusion>
257 <groupId>org.apache.httpcomponents</groupId>
258 <artifactId>httpclient</artifactId>
259 </exclusion>
260 </exclusions>
261 </dependency>
262
263 <dependency>
264 <!-- Needed for InMemoryH2Test -->
265 <groupId>com.h2database</groupId>
266 <artifactId>h2</artifactId>
267 <scope>test</scope>
268 </dependency>
269
270 <dependency>
271 <groupId>com.fasterxml.uuid</groupId>
272 <artifactId>java-uuid-generator</artifactId>
273 </dependency>
274 <dependency>
275 <groupId>org.codehaus.groovy</groupId>
276 <artifactId>groovy-all</artifactId>
277 </dependency>
278 <dependency>
279 <groupId>org.apache.commons</groupId>
280 <artifactId>commons-lang3</artifactId>
281 <version>3.4</version>
282 </dependency>
283 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400284 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700285 <artifactId>MSOCoreBPMN</artifactId>
286 <version>${project.version}</version>
287 </dependency>
288 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400289 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700290 <artifactId>MSOCommonBPMN</artifactId>
291 <version>${project.version}</version>
Rob Daugherty39585232017-11-16 15:42:27 -0500292 </dependency>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700293 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400294 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700295 <artifactId>MSOCommonBPMN</artifactId>
296 <version>${project.version}</version>
297 <classifier>tests</classifier>
298 <scope>test</scope>
299 </dependency>
300 <dependency>
301 <!-- unit test utilities -->
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400302 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700303 <artifactId>MSOCoreBPMN</artifactId>
304 <version>${project.version}</version>
305 <classifier>tests</classifier>
306 <scope>test</scope>
307 </dependency>
308 <dependency>
309 <groupId>javax.ws.rs</groupId>
310 <artifactId>javax.ws.rs-api</artifactId>
311 <version>2.0</version>
312 </dependency>
313 <!-- for encoding the url the same way A&AI does -->
314 <dependency>
315 <groupId>org.springframework</groupId>
316 <artifactId>spring-web</artifactId>
317 <version>4.3.2.RELEASE</version>
318 </dependency>
319 <dependency>
Rob Daugherty9de3ce02017-08-04 12:15:51 -0400320 <groupId>org.openecomp.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700321 <artifactId>MSORESTClient</artifactId>
322 <version>${project.version}</version>
323 </dependency>
324
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400325 <dependency>
326 <groupId>javax.servlet</groupId>
327 <artifactId>javax.servlet-api</artifactId>
328 <version>3.0.1</version>
329 <scope>provided</scope>
330 </dependency>
331
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700332 <dependency>
333 <groupId>com.github.tomakehurst</groupId>
334 <artifactId>wiremock</artifactId>
335 <version>1.56</version>
336 <scope>test</scope>
337 <classifier>standalone</classifier>
338 <exclusions>
339 <exclusion>
340 <groupId>org.mortbay.jetty</groupId>
341 <artifactId>jetty</artifactId>
342 </exclusion>
343 <exclusion>
344 <groupId>com.google.guava</groupId>
345 <artifactId>guava</artifactId>
346 </exclusion>
347 <exclusion>
348 <groupId>com.fasterxml.jackson.core</groupId>
349 <artifactId>jackson-core</artifactId>
350 </exclusion>
351 <exclusion>
352 <groupId>com.fasterxml.jackson.core</groupId>
353 <artifactId>jackson-annotations</artifactId>
354 </exclusion>
355 <exclusion>
356 <groupId>com.fasterxml.jackson.core</groupId>
357 <artifactId>jackson-databind</artifactId>
358 </exclusion>
359 <exclusion>
360 <groupId>org.apache.httpcomponents</groupId>
361 <artifactId>httpclient</artifactId>
362 </exclusion>
363 <exclusion>
364 <groupId>org.skyscreamer</groupId>
365 <artifactId>jsonassert</artifactId>
366 </exclusion>
367 <exclusion>
368 <groupId>xmlunit</groupId>
369 <artifactId>xmlunit</artifactId>
370 </exclusion>
371 <exclusion>
372 <groupId>com.jayway.jsonpath</groupId>
373 <artifactId>json-path</artifactId>
374 </exclusion>
375 <exclusion>
376 <groupId>net.sf.jopt-simple</groupId>
377 <artifactId>jopt-simple</artifactId>
378 </exclusion>
379 </exclusions>
380 </dependency>
381 <dependency>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400382 <groupId>org.camunda.bpm</groupId>
383 <artifactId>camunda-engine-spring</artifactId>
384 </dependency>
385 <dependency>
386 <groupId>org.springframework</groupId>
387 <artifactId>spring-beans</artifactId>
388 <version>4.3.2.RELEASE</version>
389</dependency>
390<dependency>
391 <!-- Optional Plugin for Camunda BPM Workbench -->
392 <groupId>org.camunda.bpm.workbench</groupId>
393 <artifactId>camunda-workbench-dist-embeddable</artifactId>
394 <version>1.0.0-alpha8</version>
395 <scope>test</scope>
396 </dependency>
397 <dependency>
398 <groupId>org.jboss.resteasy</groupId>
399 <artifactId>resteasy-jackson2-provider</artifactId>
400 <version>3.0.11.Final</version>
Arthur Martella35904702017-10-02 23:00:21 -0400401 <exclusions>
402 <exclusion>
403 <groupId>com.fasterxml.jackson.jaxrs</groupId>
404 <artifactId>jackson-jaxrs-json-provider</artifactId>
405 </exclusion>
406 </exclusions>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400407 </dependency>
Zhuoyao Huang07245582017-09-22 19:22:42 +0800408
409 <dependency>
410 <groupId>org.onap.msb.java-sdk</groupId>
411 <artifactId>msb-java-sdk</artifactId>
seshukma6b45462017-11-03 10:26:29 +0530412 <version>1.0.0</version>
Arthur Martella189eea12017-10-02 15:16:17 -0400413 <exclusions>
414 <exclusion>
415 <groupId>com.eclipsesource.jaxrs</groupId>
416 <artifactId>jersey-all</artifactId>
417 </exclusion>
418 </exclusions>
Zhuoyao Huang07245582017-09-22 19:22:42 +0800419 </dependency>
420
421 <!--for yang tools-->
黄卓垚10112215f276f1c2017-09-30 09:45:45 +0800422<!-- <dependency>
Zhuoyao Huang07245582017-09-22 19:22:42 +0800423 <groupId>org.openecomp.so</groupId>
424 <artifactId>common</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -0800425 <version>1.2.0-SNAPSHOT</version>
Zhuoyao Huang5f130a92017-09-23 16:37:48 +0800426 </dependency>
Zhuoyao Huang07245582017-09-22 19:22:42 +0800427
428 <dependency>
429 <groupId>org.onap.sdnc.northbound</groupId>
430 <artifactId>generic-resource-api.model</artifactId>
431 <version>1.2.0</version>
黄卓垚10112215f276f1c2017-09-30 09:45:45 +0800432 </dependency>-->
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -0700433 </dependencies>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400434</project>