blob: 32e7d4a6aca76e6eb95bd77b9515f6385caac2e2 [file] [log] [blame]
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -05001<?xml version="1.0"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
6 <parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05007 <groupId>org.onap.so</groupId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -05008 <artifactId>bpmn</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08009 <version>1.2.0-SNAPSHOT</version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050010 </parent>
11 <artifactId>MSOCommonBPMN</artifactId>
12 <name>MSOCommonBPMN</name>
Rob Daughertyd750eab2017-11-08 18:35:49 -050013 <packaging>jar</packaging>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050014
15 <properties>
Rob Daugherty38f72072018-03-14 02:07:32 -040016 <camunda.version>7.8.0</camunda.version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050017 <spring.version>4.3.2.RELEASE</spring.version>
Arthur Martellafcc1cbc2018-03-28 00:30:10 -040018 <httpclient.version>4.5.5</httpclient.version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050019 <jax.ws.rs>2.0.1</jax.ws.rs>
20 <jackson.version>1.1.1</jackson.version>
21 <maven.compiler.target>1.8</maven.compiler.target>
22 <maven.compiler.source>1.8</maven.compiler.source>
23 </properties>
24
Rob Daugherty38f72072018-03-14 02:07:32 -040025
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050026 <build>
27 <plugins>
28 <plugin>
29 <groupId>org.apache.maven.plugins</groupId>
30 <artifactId>maven-compiler-plugin</artifactId>
31 <executions>
32 <execution>
33 <id>test-compile</id>
34 <phase>compile</phase>
35 <goals>
36 <goal>testCompile</goal>
37 </goals>
38 <configuration>
39 <skip>false</skip>
40 </configuration>
41 </execution>
42 </executions>
43 </plugin>
Rob Daugherty38f72072018-03-14 02:07:32 -040044
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050045 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-jar-plugin</artifactId>
Rob Daughertyd750eab2017-11-08 18:35:49 -050048 <version>3.0.2</version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050049 <executions>
50 <execution>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050051 <goals>
52 <goal>test-jar</goal>
53 </goals>
54 <configuration>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050055 <skip>false</skip>
56 </configuration>
57 </execution>
58 </executions>
59 </plugin>
60 <plugin>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050061 <groupId>org.apache.cxf</groupId>
62 <artifactId>cxf-codegen-plugin</artifactId>
63 <version>2.5.2</version>
64 </plugin>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-eclipse-plugin</artifactId>
68 <version>2.8</version>
69 <configuration>
70 <additionalProjectnatures>
71 <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
72 </additionalProjectnatures>
73 <sourceIncludes>
74 <sourceInclude>**/*.groovy</sourceInclude>
75 </sourceIncludes>
76 </configuration>
77 </plugin>
78 <plugin>
79 <artifactId>maven-antrun-plugin</artifactId>
80 <executions>
81 <execution>
82 <id>compile</id>
83 <phase>compile</phase>
84 <configuration>
85 <tasks>
86 <mkdir dir="${basedir}/src/main/groovy" />
87 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc">
88 <classpath refid="maven.compile.classpath" />
89 </taskdef>
90 <mkdir dir="${project.build.outputDirectory}" />
91 <groovyc destdir="${project.build.outputDirectory}"
92 srcdir="${basedir}/src/main/groovy/" listfiles="true">
93 <classpath refid="maven.compile.classpath" />
94 </groovyc>
95 </tasks>
96 </configuration>
97 <goals>
98 <goal>run</goal>
99 </goals>
100 </execution>
101 <execution>
102 <id>test-compile</id>
103 <phase>test-compile</phase>
104 <configuration>
105 <tasks>
106 <mkdir dir="${basedir}/src/test/groovy" />
107 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc">
108 <classpath refid="maven.test.classpath" />
109 </taskdef>
110 <mkdir dir="${project.build.testOutputDirectory}" />
111 <groovyc destdir="${project.build.testOutputDirectory}"
112 srcdir="${basedir}/src/test/groovy/" listfiles="true">
113 <classpath refid="maven.test.classpath" />
114 </groovyc>
115 </tasks>
116 </configuration>
117 <goals>
118 <goal>run</goal>
119 </goals>
120 </execution>
121 </executions>
122 </plugin>
123 <plugin>
124 <groupId>org.codehaus.mojo</groupId>
125 <artifactId>jaxb2-maven-plugin</artifactId>
126 <version>2.3</version>
127 <executions>
128 <execution>
129 <id>xjc</id>
130 <goals>
131 <goal>xjc</goal>
132 </goals>
133 </execution>
134 </executions>
135 <configuration>
136 <extension>true</extension>
137 <arguments>
138 <argument>-Xannotate</argument>
139 <argument>-Xcommons-lang</argument>
140 </arguments>
141 <sources>
142 <source>src/main/resources/xsd</source>
143 </sources>
144 <xjbSources>
145 <xjbSource>src/main/resources/xjb</xjbSource>
146 </xjbSources>
147 <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
148 </configuration>
149 <dependencies>
150 <dependency>
151 <groupId>org.jvnet.jaxb2_commons</groupId>
152 <artifactId>jaxb2-basics-annotate</artifactId>
153 <version>0.6.4</version>
154 </dependency>
155 <dependency>
156 <groupId>org.jvnet.jaxb2_commons</groupId>
157 <artifactId>jaxb2-commons-lang</artifactId>
158 <version>2.3</version>
159 </dependency>
160 <dependency>
161 <groupId>com.sun.codemodel</groupId>
162 <artifactId>codemodel</artifactId>
163 <version>2.6</version>
164 </dependency>
165 </dependencies>
166 </plugin>
Rob Daugherty38f72072018-03-14 02:07:32 -0400167 <plugin>
168 <groupId>org.codehaus.mojo</groupId>
169 <artifactId>jaxb2-maven-plugin</artifactId>
170 <version>2.3</version>
171 <executions>
172 <execution>
173 <id>xjc</id>
174 <goals>
175 <goal>xjc</goal>
176 </goals>
177 </execution>
178 </executions>
179 <configuration>
180 <extension>true</extension>
181 <arguments>
182 <argument>-Xannotate</argument>
183 <argument>-Xcommons-lang</argument>
184 </arguments>
185 <sources>
186 <source>src/main/resources/xsd</source>
187 </sources>
188 <xjbSources>
189 <xjbSource>src/main/resources/xjb</xjbSource>
190 </xjbSources>
191 <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
192 </configuration>
193 <dependencies>
194 <dependency>
195 <groupId>org.jvnet.jaxb2_commons</groupId>
196 <artifactId>jaxb2-basics-annotate</artifactId>
197 <version>0.6.4</version>
198 </dependency>
199 <dependency>
200 <groupId>org.jvnet.jaxb2_commons</groupId>
201 <artifactId>jaxb2-commons-lang</artifactId>
202 <version>2.3</version>
203 </dependency>
204 <dependency>
205 <groupId>com.sun.codemodel</groupId>
206 <artifactId>codemodel</artifactId>
207 <version>2.6</version>
208 </dependency>
209 </dependencies>
210 </plugin>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500211 </plugins>
212 <pluginManagement>
213 <plugins>
214 <!--This plugin's configuration is used to store Eclipse m2e settings
215 only. It has no influence on the Maven build itself. -->
216 <plugin>
217 <groupId>org.eclipse.m2e</groupId>
218 <artifactId>lifecycle-mapping</artifactId>
219 <version>1.0.0</version>
220 <configuration>
221 <lifecycleMappingMetadata>
222 <pluginExecutions>
223 <pluginExecution>
224 <pluginExecutionFilter>
225 <groupId>
226 org.apache.maven.plugins
227 </groupId>
228 <artifactId>
229 maven-antrun-plugin
230 </artifactId>
231 <versionRange>
232 [1.3,)
233 </versionRange>
234 <goals>
235 <goal>run</goal>
236 </goals>
237 </pluginExecutionFilter>
238 <action>
239 <ignore></ignore>
240 </action>
241 </pluginExecution>
242 </pluginExecutions>
243 </lifecycleMappingMetadata>
244 </configuration>
245 </plugin>
Rob Daugherty38f72072018-03-14 02:07:32 -0400246
247
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500248 </plugins>
249 </pluginManagement>
250 </build>
251
252 <dependencies>
Rob Daugherty38f72072018-03-14 02:07:32 -0400253
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500254 <dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500255 <groupId>org.camunda.bpm</groupId>
256 <artifactId>camunda-engine</artifactId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500257 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500258 <dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500259 <groupId>org.camunda.bpm</groupId>
260 <artifactId>camunda-engine-cdi</artifactId>
261 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400262
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500263 <dependency>
264 <groupId>org.camunda.bpm.extension</groupId>
265 <artifactId>camunda-bpm-assert</artifactId>
266 <scope>test</scope>
267 </dependency>
268 <dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500269 <groupId>org.camunda.spin</groupId>
270 <artifactId>camunda-spin-dataformat-all</artifactId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500271 </dependency>
272 <dependency>
273 <groupId>org.camunda.bpm</groupId>
274 <artifactId>camunda-engine-plugin-spin</artifactId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500275 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400276
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500277 <dependency>
278 <groupId>org.camunda.bpm</groupId>
279 <artifactId>camunda-engine-plugin-connect</artifactId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500280 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400281
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500282 <dependency>
283 <!-- Bootstrap for styling via Webjars project -->
284 <groupId>org.webjars</groupId>
285 <artifactId>bootstrap</artifactId>
286 <version>2.3.2</version>
287 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400288
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500289 <dependency>
290 <!-- Needed for InMemoryH2Test -->
291 <groupId>com.h2database</groupId>
292 <artifactId>h2</artifactId>
293 <scope>test</scope>
294 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400295
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500296 <dependency>
297 <groupId>com.fasterxml.uuid</groupId>
298 <artifactId>java-uuid-generator</artifactId>
299 </dependency>
300 <dependency>
301 <groupId>org.codehaus.groovy</groupId>
302 <artifactId>groovy-all</artifactId>
303 </dependency>
304 <dependency>
305 <groupId>org.apache.commons</groupId>
306 <artifactId>commons-lang3</artifactId>
307 <version>3.4</version>
308 </dependency>
309 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500310 <groupId>org.onap.so</groupId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500311 <artifactId>MSOCoreBPMN</artifactId>
312 <version>${project.version}</version>
313 </dependency>
314 <dependency>
315 <!-- unit test utilities -->
Arthur Martella22e015f2018-02-22 14:24:40 -0500316 <groupId>org.onap.so</groupId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500317 <artifactId>MSOCoreBPMN</artifactId>
318 <version>${project.version}</version>
319 <classifier>tests</classifier>
320 <scope>test</scope>
321 </dependency>
322 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500323 <groupId>org.onap.so</groupId>
Rob Daughertyd750eab2017-11-08 18:35:49 -0500324 <artifactId>common</artifactId>
325 <version>${project.version}</version>
326 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500327 <dependency>
328 <groupId>javax.ws.rs</groupId>
329 <artifactId>javax.ws.rs-api</artifactId>
330 <version>2.0</version>
331 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500332 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500333 <groupId>org.onap.so</groupId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500334 <artifactId>MSORESTClient</artifactId>
335 <version>${project.version}</version>
336 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500337 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400338 <groupId>org.onap.so.adapters</groupId>
339 <artifactId>mso-adapters-rest-interface</artifactId>
340 <version>${project.version}</version>
341 </dependency>
342 <dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500343 <groupId>javax.servlet</groupId>
344 <artifactId>javax.servlet-api</artifactId>
345 <version>3.0.1</version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500346 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400347
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500348 <dependency>
349 <groupId>org.springframework</groupId>
350 <artifactId>spring-test</artifactId>
Byung-Woo June9ee7262018-03-19 09:33:53 -0400351 <version>4.3.14.RELEASE</version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500352 </dependency>
Rob Daugherty14ec9872018-03-27 18:43:24 -0400353 <dependency>
354 <groupId>org.onap.sdc.sdc-tosca</groupId>
355 <artifactId>sdc-tosca</artifactId>
356 <version>1.3.3</version>
357 <!-- sdc-tosca:1.3.3 depends on jtosca:1.3.4-SNAPSHOT,
358 which must be excluded, and the release version
359 of jtosca must be pulled in using an additional
360 dependency, below -->
361 <exclusions>
362 <exclusion>
363 <groupId>org.onap.sdc.jtosca</groupId>
364 <artifactId>jtosca</artifactId>
365 </exclusion>
366 </exclusions>
367 </dependency>
368 <dependency>
369 <groupId>org.onap.sdc.jtosca</groupId>
370 <artifactId>jtosca</artifactId>
371 <version>1.3.4</version>
372 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500373 <dependency>
374 <groupId>org.camunda.bpm</groupId>
375 <artifactId>camunda-engine-spring</artifactId>
376 </dependency>
377 <dependency>
378 <groupId>org.springframework</groupId>
379 <artifactId>spring-beans</artifactId>
380 <version>4.3.2.RELEASE</version>
381 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400382
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500383 <dependency>
384 <groupId>org.aspectj</groupId>
385 <artifactId>aspectjrt</artifactId>
386 <version>1.6.12</version>
387 </dependency>
388 <dependency>
Arthur Martellafcc1cbc2018-03-28 00:30:10 -0400389 <groupId>org.apache.httpcomponents</groupId>
390 <artifactId>httpclient</artifactId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500391 <version>${httpclient.version}</version>
392 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500393 <dependency>
394 <groupId>commons-lang</groupId>
395 <artifactId>commons-lang</artifactId>
396 <version>2.6</version>
397 </dependency>
398 <dependency>
399 <groupId>com.openpojo</groupId>
400 <artifactId>openpojo</artifactId>
401 <version>0.8.6</version>
402 </dependency>
403 <dependency>
404 <groupId>com.jayway.jsonpath</groupId>
405 <artifactId>json-path</artifactId>
406 <version>2.2.0</version>
407 </dependency>
408 <dependency>
409 <groupId>org.springframework</groupId>
410 <artifactId>spring-web</artifactId>
411 <version>${spring.version}</version>
412 </dependency>
Byung-Woo Jun5c3d00a2018-03-27 15:00:06 -0400413 <!-- bwj: duplicated one
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500414 <dependency>
415 <groupId>org.springframework</groupId>
416 <artifactId>spring-test</artifactId>
417 <version>${spring.version}</version>
418 </dependency>
Byung-Woo Jun5c3d00a2018-03-27 15:00:06 -0400419 -->
Byung-Woo Jun5c3d00a2018-03-27 15:00:06 -0400420 <!-- bwj: added -->
421 <dependency>
422 <groupId>com.googlecode.libphonenumber</groupId>
423 <artifactId>libphonenumber</artifactId>
424 <version>8.9.1</version>
425 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500426 <dependency>
427 <groupId>javax.ws.rs</groupId>
428 <artifactId>javax.ws.rs-api</artifactId>
429 <version>${jax.ws.rs}</version>
430 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500431 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400432 <groupId>org.onap.appc.client</groupId>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500433 <artifactId>client-lib</artifactId>
Rob Daugherty3dbb8022018-03-27 21:01:10 -0400434 <version>1.3.0</version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500435 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500436 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400437 <groupId>org.onap.appc.client</groupId>
438 <artifactId>client-kit</artifactId>
439 <version>1.3.0</version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500440 </dependency>
441 <dependency>
442 <groupId>org.aspectj</groupId>
443 <artifactId>aspectjrt</artifactId>
444 <version>1.6.12</version>
445 </dependency>
446 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400447 <groupId>com.att.nsa</groupId>
448 <artifactId>saClientLibrary</artifactId>
449<!-- <version>1.2.4</version> -->
450 <version>1.3.0-oss</version>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500451 </dependency>
452 <dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500453 <!-- Optional Plugin for Camunda BPM Workbench -->
454 <groupId>org.camunda.bpm.workbench</groupId>
455 <artifactId>camunda-workbench-dist-embeddable</artifactId>
456 <version>1.0.0-alpha8</version>
457 <scope>test</scope>
458 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400459 <dependency>
460 <groupId>org.json</groupId>
461 <artifactId>json</artifactId>
462 <version>20160810</version>
463 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500464 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400465 <groupId>org.assertj</groupId>
466 <artifactId>assertj-core</artifactId>
467 <version>3.9.0</version>
468 <scope>test</scope>
Rob Daughertyd750eab2017-11-08 18:35:49 -0500469 </dependency>
470 <dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400471 <groupId>pl.pragmatists</groupId>
472 <artifactId>JUnitParams</artifactId>
473 <version>1.1.1</version>
Rob Daughertyd750eab2017-11-08 18:35:49 -0500474 </dependency>
biniekaffcd9b2018-02-15 11:44:11 +0100475 <dependency>
476 <groupId>org.assertj</groupId>
477 <artifactId>assertj-core</artifactId>
478 <version>3.9.0</version>
479 <scope>test</scope>
480 </dependency>
481 <dependency>
482 <groupId>pl.pragmatists</groupId>
483 <artifactId>JUnitParams</artifactId>
484 <version>1.1.1</version>
485 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400486 <dependency>
487 <groupId>org.assertj</groupId>
488 <artifactId>assertj-core</artifactId>
489 <version>3.9.0</version>
490 <scope>test</scope>
491 </dependency>
492 <dependency>
493 <groupId>pl.pragmatists</groupId>
494 <artifactId>JUnitParams</artifactId>
495 <version>1.1.1</version>
496 </dependency>
497 <dependency>
498 <groupId>org.jboss.resteasy</groupId>
499 <artifactId>resteasy-jackson2-provider</artifactId>
500 <version>3.1.0.Final</version>
501 </dependency>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500502 </dependencies>
503</project>