blob: e3ba0284dc67bb51f6d5778403e9e46f8a07ead3 [file] [log] [blame]
Gary Wu1c1fc782018-08-24 15:30:22 -07001<?xml version="1.0"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04003 <parent>
4 <groupId>org.onap.so</groupId>
5 <artifactId>bpmn</artifactId>
Rob Daugherty325d4e22018-10-19 15:13:38 -04006 <version>1.4.0-SNAPSHOT</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <artifactId>so-bpmn-infrastructure-common</artifactId>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -050010 <packaging>jar</packaging>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040011 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.cxf</groupId>
15 <artifactId>cxf-codegen-plugin</artifactId>
16 <version>2.5.2</version>
17 </plugin>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
Smokowski, Steve (ss835w)be2ccf02018-08-09 14:24:13 -040020 <artifactId>maven-eclipse-plugin</artifactId>
21 <version>2.8</version>
22 <configuration>
23 <additionalProjectnatures>
24 <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
25 </additionalProjectnatures>
26 <sourceIncludes>
27 <sourceInclude>**/*.groovy</sourceInclude>
28 </sourceIncludes>
29 </configuration>
30 </plugin>
31 <plugin>
32 <groupId>org.codehaus.gmaven</groupId>
33 <artifactId>gmaven-plugin</artifactId>
34 <version>1.5</version>
35 <dependencies>
36 <dependency>
37 <groupId>org.codehaus.gmaven.runtime</groupId>
38 <artifactId>gmaven-runtime-2.0</artifactId>
39 <version>1.5</version>
40 </dependency>
41 <dependency>
42 <groupId>org.codehaus.groovy</groupId>
43 <artifactId>groovy</artifactId>
44 <version>${groovy.version}</version>
45 </dependency>
46 </dependencies>
47 <configuration>
48 <debug>false</debug>
49 <verbose>true</verbose>
50 <stacktrace>true</stacktrace>
51 <defaultScriptExtension>.groovy</defaultScriptExtension>
52 <providerSelection>2.0</providerSelection>
53 </configuration>
54 <executions>
55 <execution>
56 <goals>
57 <goal>testCompile</goal>
58 <goal>compile</goal>
59 </goals>
60 </execution>
61 </executions>
62 </plugin>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040065 <artifactId>maven-dependency-plugin</artifactId>
66 </plugin>
67 <plugin>
68 <artifactId>maven-failsafe-plugin</artifactId>
69 <version>2.6</version>
70 <executions>
71 <execution>
72 <goals>
73 <goal>integration-test</goal>
74 <goal>verify</goal>
75 </goals>
76 </execution>
77 </executions>
78 </plugin>
79 </plugins>
80 <pluginManagement>
81 <plugins>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -050082 <!--This plugin's configuration is used to store Eclipse m2e settings
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040083 only. It has no influence on the Maven build itself. -->
84 <plugin>
85 <groupId>org.eclipse.m2e</groupId>
86 <artifactId>lifecycle-mapping</artifactId>
87 <version>1.0.0</version>
88 <configuration>
89 <lifecycleMappingMetadata>
90 <pluginExecutions>
91 <pluginExecution>
92 <pluginExecutionFilter>
93 <groupId>
94 org.apache.maven.plugins
95 </groupId>
96 <artifactId>
97 maven-antrun-plugin
98 </artifactId>
99 <versionRange>
100 [1.3,)
101 </versionRange>
102 <goals>
103 <goal>run</goal>
104 </goals>
105 </pluginExecutionFilter>
106 <action>
Gary Wu1c1fc782018-08-24 15:30:22 -0700107 <ignore/>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400108 </action>
109 </pluginExecution>
110 </pluginExecutions>
111 </lifecycleMappingMetadata>
112 </configuration>
113 </plugin>
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-surefire-plugin</artifactId>
117 <executions>
118 <execution>
119 <id>default-test</id>
120 <goals>
121 <goal>test</goal>
122 </goals>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500123 <configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400124 <includes>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500125 <include>**/AllTestsTestSuite.java</include>
126 </includes>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400127 </configuration>
128 </execution>
129 <execution>
130 <id>tasks-test</id>
131 <goals>
132 <goal>test</goal>
133 </goals>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500134 <configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400135 <includes>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500136 <include>**/AllTasksTestsTestSuite.java</include>
137 </includes>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400138 </configuration>
139 </execution>
140 </executions>
Benjamin, Max (mb388a)aaa93d42019-03-20 14:12:06 -0400141 <configuration>
142 <parallel>suites</parallel>
143 </configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400144 </plugin>
145 </plugins>
146 </pluginManagement>
147 <finalName>${project.artifactId}-${project.version}</finalName>
148 </build>
149
150 <dependencyManagement>
151 <dependencies>
152 <dependency>
153 <groupId>org.camunda.bpm</groupId>
154 <artifactId>camunda-bom</artifactId>
155 <version>${camunda.version}</version>
156 <scope>import</scope>
157 <type>pom</type>
158 </dependency>
159 </dependencies>
160 </dependencyManagement>
161
162 <dependencies>
163 <dependency>
164 <groupId>org.camunda.bpm.springboot</groupId>
165 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400166 <version>${camunda.springboot.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400167 <scope>test</scope>
168 </dependency>
169 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400170 <groupId>org.camunda.bpm.springboot</groupId>
171 <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
172 <version>${camunda.springboot.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400173 <scope>test</scope>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500174 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400175 <dependency>
176 <groupId>org.apache.cxf</groupId>
177 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400178 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400179 </dependency>
180 <dependency>
181 <groupId>org.apache.cxf</groupId>
182 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400183 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400184 </dependency>
185 <dependency>
186 <groupId>org.apache.cxf</groupId>
187 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400188 <version>${cxf.version}</version>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500189 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400190 <dependency>
191 <groupId>com.h2database</groupId>
192 <artifactId>h2</artifactId>
193 <scope>test</scope>
194 </dependency>
195 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400196 <groupId>com.google.guava</groupId>
197 <artifactId>guava</artifactId>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500198 </dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400199 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400200 <groupId>com.fasterxml.uuid</groupId>
201 <artifactId>java-uuid-generator</artifactId>
202 </dependency>
203 <dependency>
204 <groupId>org.codehaus.groovy</groupId>
205 <artifactId>groovy-all</artifactId>
206 </dependency>
207 <dependency>
208 <groupId>org.apache.commons</groupId>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500209 <artifactId>commons-lang3</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400210 </dependency>
211 <dependency>
212 <groupId>org.onap.so</groupId>
213 <artifactId>MSOCoreBPMN</artifactId>
214 <version>${project.version}</version>
215 </dependency>
216 <dependency>
217 <groupId>org.onap.so</groupId>
218 <artifactId>MSOCommonBPMN</artifactId>
219 <version>${project.version}</version>
220 </dependency>
221 <dependency>
222 <groupId>org.onap.so</groupId>
223 <artifactId>MSOCoreBPMN</artifactId>
224 <version>${project.version}</version>
225 <classifier>tests</classifier>
226 <scope>test</scope>
227 </dependency>
228 <dependency>
229 <groupId>javax.ws.rs</groupId>
230 <artifactId>javax.ws.rs-api</artifactId>
Benjamin, Max (mb388a)e4f7e562018-08-11 00:17:59 -0400231 <version>${jax.ws.rs}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400232 </dependency>
233 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400234 <groupId>org.camunda.spin</groupId>
235 <artifactId>camunda-spin-core</artifactId>
236 <scope>test</scope>
237 </dependency>
238 <dependency>
239 <groupId>org.camunda.spin</groupId>
240 <artifactId>camunda-spin-dataformat-all</artifactId>
241 <scope>test</scope>
242 </dependency>
243 <dependency>
244 <artifactId>camunda-spin-dataformat-all</artifactId>
245 <groupId>org.camunda.spin</groupId>
246 <scope>test</scope>
247 </dependency>
248 <dependency>
249 <groupId>org.camunda.bpm</groupId>
250 <artifactId>camunda-engine-plugin-spin</artifactId>
251 </dependency>
252
253 <dependency>
254 <groupId>org.camunda.bpm</groupId>
255 <artifactId>camunda-engine-plugin-connect</artifactId>
256 <scope>test</scope>
257 </dependency>
258 <dependency>
259 <groupId>javax.annotation</groupId>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500260 <artifactId>javax.annotation-api</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400261 </dependency>
262 <dependency>
263 <groupId>org.onap.msb.java-sdk</groupId>
264 <artifactId>msb-java-sdk</artifactId>
Gary Wu3c235ce2018-10-15 18:55:10 -0700265 <version>1.1.1</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400266 <exclusions>
267 <exclusion>
268 <groupId>com.eclipsesource.jaxrs</groupId>
269 <artifactId>jersey-all</artifactId>
270 </exclusion>
271 </exclusions>
272 </dependency>
273
274 <dependency>
275 <groupId>org.springframework.boot</groupId>
276 <artifactId>spring-boot-configuration-processor</artifactId>
277 <optional>true</optional>
278 </dependency>
279 <dependency>
280 <groupId>ch.qos.logback</groupId>
281 <artifactId>logback-classic</artifactId>
282 </dependency>
283 <dependency>
284 <groupId>ch.qos.logback</groupId>
285 <artifactId>logback-core</artifactId>
286 </dependency>
287 <dependency>
288 <groupId>org.slf4j</groupId>
289 <artifactId>slf4j-api</artifactId>
Benjamin, Max (mb388a)61affc62018-11-05 11:00:36 -0500290 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400291 <dependency>
292 <groupId>org.mariadb.jdbc</groupId>
293 <artifactId>mariadb-java-client</artifactId>
294 </dependency>
295 <dependency>
296 <groupId>ch.vorburger.mariaDB4j</groupId>
297 <artifactId>mariaDB4j</artifactId>
298 <version>2.2.3</version>
299 <scope>test</scope>
300 </dependency>
Smokowski, Steve (ss835w)be2ccf02018-08-09 14:24:13 -0400301 <dependency>
302 <groupId>org.onap.so</groupId>
303 <artifactId>MSOCommonBPMN</artifactId>
304 <version>${project.version}</version>
305 <classifier>tests</classifier>
306 <scope>test</scope>
307 </dependency>
biniek68dbf002018-09-04 16:27:25 +0200308 <dependency>
309 <groupId>org.camunda.bpm.springboot</groupId>
310 <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400311 <version>${camunda.springboot.version}</version>
biniek68dbf002018-09-04 16:27:25 +0200312 <scope>test</scope>
313 </dependency>
Joanna Jeremicz0ac8def2018-12-05 10:38:39 +0100314 <dependency>
315 <groupId>org.assertj</groupId>
316 <artifactId>assertj-core</artifactId>
317 <scope>test</scope>
318 </dependency>
319 <dependency>
320 <groupId>org.camunda.bpm.extension.mockito</groupId>
321 <artifactId>camunda-bpm-mockito</artifactId>
322 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400323 </dependencies>
324</project>