blob: c395b012219947915577c1b00f8c6293527e5bae [file] [log] [blame]
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -05001<?xml version="1.0"?>
Boslet, Cory3db9a382020-04-02 15:17:22 -04002<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04003 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.onap.so</groupId>
7 <artifactId>bpmn</artifactId>
seshukmb9af26a2020-02-26 19:30:17 +08008 <version>1.6.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04009 </parent>
10 <artifactId>MSOCommonBPMN</artifactId>
11 <name>MSOCommonBPMN</name>
12 <packaging>jar</packaging>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050013
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040014 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
Boslet, Cory3db9a382020-04-02 15:17:22 -040019 <configuration>
Benjamin, Max26275322020-03-16 10:09:29 -040020 <compilerId>groovy-eclipse-compiler</compilerId>
21 </configuration>
22
23 <dependencies>
24 <dependency>
25 <groupId>org.codehaus.groovy</groupId>
26 <artifactId>groovy-eclipse-compiler</artifactId>
27 <version>3.6.0-03</version>
28 </dependency>
29 <dependency>
30 <groupId>org.codehaus.groovy</groupId>
31 <artifactId>groovy-eclipse-batch</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -040032 <version>2.5.8-03</version>
Benjamin, Max26275322020-03-16 10:09:29 -040033 </dependency>
34 </dependencies>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040035 </plugin>
Rob Daugherty38f72072018-03-14 02:07:32 -040036
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040037 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-jar-plugin</artifactId>
40 <version>3.0.2</version>
41 <executions>
42 <execution>
43 <goals>
44 <goal>test-jar</goal>
45 </goals>
46 <configuration>
47 <skip>false</skip>
48 <excludes>
49 <exclude>**/validation/*</exclude>
50 </excludes>
51 </configuration>
52 </execution>
53 </executions>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.cxf</groupId>
57 <artifactId>cxf-codegen-plugin</artifactId>
58 <version>2.5.2</version>
59 </plugin>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040062 <artifactId>maven-surefire-plugin</artifactId>
63 <executions>
64 <execution>
65 <id>default-test</id>
66 <goals>
67 <goal>test</goal>
68 </goals>
69 <configuration>
70 <includes>
71 <include>**/AllTestSuites.java</include>
72 </includes>
73 </configuration>
74 </execution>
75 <execution>
76 <id>non-spring-tests</id>
77 <goals>
78 <goal>test</goal>
79 </goals>
80 <configuration>
81 <includes>
82 <include>**/NonSpringSuite.java</include>
83 </includes>
84 </configuration>
85 </execution>
86 <execution>
87 <id>groovy-tests</id>
88 <goals>
89 <goal>test</goal>
90 </goals>
91 <configuration>
92 <includes>
93 <include>**/AllGroovyTestSuites.java</include>
94 </includes>
95 </configuration>
96 </execution>
97 </executions>
98 <configuration>
99 <parallel>suites</parallel>
100 </configuration>
101 </plugin>
102 </plugins>
103 <pluginManagement>
104 <plugins>
Benjamin, Max26275322020-03-16 10:09:29 -0400105 <!--This plugin's configuration is used to store Eclipse m2e settings
106 only. It has no influence on the Maven build itself. -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400107 <plugin>
108 <groupId>org.eclipse.m2e</groupId>
109 <artifactId>lifecycle-mapping</artifactId>
110 <version>1.0.0</version>
111 <configuration>
112 <lifecycleMappingMetadata>
113 <pluginExecutions>
114 <pluginExecution>
115 <pluginExecutionFilter>
116 <groupId>
Benjamin, Max26275322020-03-16 10:09:29 -0400117 org.apache.maven.plugins
118 </groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400119 <artifactId>
Benjamin, Max26275322020-03-16 10:09:29 -0400120 maven-antrun-plugin
121 </artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400122 <versionRange>
Benjamin, Max26275322020-03-16 10:09:29 -0400123 [1.3,)
124 </versionRange>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400125 <goals>
Benjamin, Max9868f172020-05-18 16:37:51 -0400126 <goal>execute</goal>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400127 </goals>
128 </pluginExecutionFilter>
129 <action>
Benjamin, Max9868f172020-05-18 16:37:51 -0400130 <execute>
131 <runOnIncremental>true</runOnIncremental>
132 </execute>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400133 </action>
134 </pluginExecution>
135 </pluginExecutions>
136 </lifecycleMappingMetadata>
137 </configuration>
138 </plugin>
139 </plugins>
140 </pluginManagement>
141 </build>
142 <dependencyManagement>
143 <dependencies>
144 <dependency>
145 <!-- Import dependency management from camunda -->
146 <groupId>org.camunda.bpm</groupId>
147 <artifactId>camunda-bom</artifactId>
148 <version>${camunda.version}</version>
149 <scope>import</scope>
150 <type>pom</type>
151 </dependency>
152 </dependencies>
153 </dependencyManagement>
154 <dependencies>
155 <dependency>
156 <groupId>org.camunda.bpm.springboot</groupId>
157 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
158 <version>${camunda.springboot.version}</version>
159 <scope>test</scope>
160 </dependency>
161 <dependency>
162 <groupId>org.springframework.cloud</groupId>
163 <artifactId>spring-cloud-contract-wiremock</artifactId>
164 <version>1.2.4.RELEASE</version>
165 <scope>test</scope>
166 </dependency>
167 <dependency>
168 <groupId>org.springframework.boot</groupId>
169 <artifactId>spring-boot-starter-test</artifactId>
170 <scope>test</scope>
171 </dependency>
172 <dependency>
173 <groupId>org.camunda.bpm.extension.mockito</groupId>
174 <artifactId>camunda-bpm-mockito</artifactId>
175 <version>3.2.1</version>
176 <scope>test</scope>
177 </dependency>
178 <dependency>
179 <groupId>org.camunda.connect</groupId>
180 <artifactId>camunda-connect-connectors-all</artifactId>
181 </dependency>
182 <dependency>
183 <groupId>commons-beanutils</groupId>
184 <artifactId>commons-beanutils</artifactId>
185 <version>1.9.3</version>
186 </dependency>
187 <dependency>
188 <groupId>org.springframework.boot</groupId>
189 <artifactId>spring-boot-starter-actuator</artifactId>
190 </dependency>
191 <dependency>
192 <groupId>org.springframework.boot</groupId>
193 <artifactId>spring-boot-starter-web</artifactId>
194 </dependency>
195 <dependency>
196 <!-- Needed for InMemoryH2Test -->
197 <groupId>com.h2database</groupId>
198 <artifactId>h2</artifactId>
199 <scope>test</scope>
200 </dependency>
201 <dependency>
202 <groupId>org.codehaus.groovy</groupId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400203 <artifactId>groovy</artifactId>
204 </dependency>
205 <dependency>
206 <groupId>org.codehaus.groovy</groupId>
207 <artifactId>groovy-xml</artifactId>
208 </dependency>
209 <dependency>
210 <groupId>org.codehaus.groovy</groupId>
211 <artifactId>groovy-json</artifactId>
212 </dependency>
213 <dependency>
214 <groupId>org.codehaus.groovy</groupId>
215 <artifactId>groovy-jsr223</artifactId>
216 </dependency>
217 <dependency>
218 <groupId>org.codehaus.groovy</groupId>
219 <artifactId>groovy-test</artifactId>
220 <scope>test</scope>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400221 </dependency>
222 <dependency>
223 <groupId>org.onap.so</groupId>
224 <artifactId>MSOCoreBPMN</artifactId>
225 <version>${project.version}</version>
226 </dependency>
227 <dependency>
228 <groupId>org.onap.so</groupId>
229 <artifactId>mso-catalog-db</artifactId>
230 <version>${project.version}</version>
231 </dependency>
232 <dependency>
233 <groupId>org.onap.so</groupId>
234 <artifactId>mso-requests-db</artifactId>
235 <version>${project.version}</version>
236 </dependency>
237 <dependency>
238 <groupId>org.onap.so</groupId>
239 <artifactId>common</artifactId>
240 <version>${project.version}</version>
241 </dependency>
242 <dependency>
243 <groupId>org.onap.so.adapters</groupId>
244 <artifactId>mso-adapters-rest-interface</artifactId>
245 <version>${project.version}</version>
246 </dependency>
247 <dependency>
248 <groupId>javax.servlet</groupId>
249 <artifactId>javax.servlet-api</artifactId>
250 </dependency>
251 <dependency>
252 <groupId>org.apache.httpcomponents</groupId>
253 <artifactId>httpclient</artifactId>
254 </dependency>
255 <dependency>
256 <groupId>commons-lang</groupId>
257 <artifactId>commons-lang</artifactId>
258 <version>2.6</version>
259 </dependency>
260 <dependency>
261 <groupId>com.jayway.jsonpath</groupId>
262 <artifactId>json-path</artifactId>
263 </dependency>
264 <dependency>
265 <groupId>javax.ws.rs</groupId>
266 <artifactId>javax.ws.rs-api</artifactId>
267 <version>${jax.ws.rs}</version>
268 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400269
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400270 <dependency>
271 <groupId>org.onap.appc.client</groupId>
272 <artifactId>client-lib</artifactId>
eeginux8ef2ec82019-05-23 10:51:36 +0100273 <version>${appc.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400274 <exclusions>
275 <exclusion>
276 <groupId>org.mockito</groupId>
277 <artifactId>mockito-core</artifactId>
278 </exclusion>
279 <exclusion>
280 <groupId>org.powermock</groupId>
281 <artifactId>powermock-module-junit4</artifactId>
282 </exclusion>
283 <exclusion>
284 <groupId>org.powermock</groupId>
285 <artifactId>powermock-api-mockito</artifactId>
286 </exclusion>
287 </exclusions>
288 </dependency>
289 <dependency>
290 <groupId>org.onap.appc.client</groupId>
291 <artifactId>client-kit</artifactId>
eeginux8ef2ec82019-05-23 10:51:36 +0100292 <version>${appc.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400293 <exclusions>
294 <exclusion>
295 <groupId>org.mockito</groupId>
296 <artifactId>mockito-core</artifactId>
297 </exclusion>
298 </exclusions>
299 </dependency>
300 <dependency>
301 <groupId>org.aspectj</groupId>
302 <artifactId>aspectjrt</artifactId>
303 </dependency>
304 <dependency>
305 <groupId>org.json</groupId>
306 <artifactId>json</artifactId>
307 </dependency>
308 <dependency>
309 <groupId>org.glassfish.jersey.core</groupId>
310 <artifactId>jersey-common</artifactId>
311 </dependency>
312 <dependency>
313 <groupId>org.glassfish.jersey.core</groupId>
314 <artifactId>jersey-client</artifactId>
315 </dependency>
316 <dependency>
317 <groupId>org.glassfish.jersey.inject</groupId>
318 <artifactId>jersey-hk2</artifactId>
319 <version>2.26</version>
320 </dependency>
321 <dependency>
322 <groupId>org.glassfish.jersey.media</groupId>
323 <artifactId>jersey-media-json-jackson</artifactId>
324 </dependency>
325 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400326 <groupId>org.springframework.boot</groupId>
327 <artifactId>spring-boot-starter-test</artifactId>
328 <scope>test</scope>
329 </dependency>
330 <dependency>
331 <groupId>uk.co.blackpepper.bowman</groupId>
332 <artifactId>bowman-client</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400333 <version>${bowman.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400334 </dependency>
335 <dependency>
336 <groupId>pl.pragmatists</groupId>
337 <artifactId>JUnitParams</artifactId>
338 <version>1.1.0</version>
339 </dependency>
340 <dependency>
341 <groupId>ch.vorburger.mariaDB4j</groupId>
342 <artifactId>mariaDB4j</artifactId>
343 <version>2.2.3</version>
344 <scope>test</scope>
345 </dependency>
346 <dependency>
347 <groupId>org.springframework.cloud</groupId>
348 <artifactId>spring-cloud-contract-wiremock</artifactId>
349 <version>1.2.4.RELEASE</version>
350 <scope>test</scope>
351 </dependency>
352 <dependency>
353 <groupId>org.assertj</groupId>
354 <artifactId>assertj-core</artifactId>
355 <version>3.11.1</version>
356 <scope>test</scope>
357 </dependency>
358 </dependencies>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500359</project>