blob: 9ce0755f49b3ac7e1cd55bae0b9e66423141e619 [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>
seshukmadbd1c42020-08-03 19:23:51 +05308 <version>1.7.1-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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400185 </dependency>
186 <dependency>
187 <groupId>org.springframework.boot</groupId>
188 <artifactId>spring-boot-starter-actuator</artifactId>
189 </dependency>
190 <dependency>
191 <groupId>org.springframework.boot</groupId>
192 <artifactId>spring-boot-starter-web</artifactId>
193 </dependency>
194 <dependency>
195 <!-- Needed for InMemoryH2Test -->
196 <groupId>com.h2database</groupId>
197 <artifactId>h2</artifactId>
198 <scope>test</scope>
199 </dependency>
200 <dependency>
201 <groupId>org.codehaus.groovy</groupId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400202 <artifactId>groovy</artifactId>
203 </dependency>
204 <dependency>
205 <groupId>org.codehaus.groovy</groupId>
206 <artifactId>groovy-xml</artifactId>
207 </dependency>
208 <dependency>
209 <groupId>org.codehaus.groovy</groupId>
210 <artifactId>groovy-json</artifactId>
211 </dependency>
212 <dependency>
213 <groupId>org.codehaus.groovy</groupId>
214 <artifactId>groovy-jsr223</artifactId>
215 </dependency>
216 <dependency>
217 <groupId>org.codehaus.groovy</groupId>
218 <artifactId>groovy-test</artifactId>
219 <scope>test</scope>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400220 </dependency>
221 <dependency>
222 <groupId>org.onap.so</groupId>
223 <artifactId>MSOCoreBPMN</artifactId>
224 <version>${project.version}</version>
225 </dependency>
226 <dependency>
227 <groupId>org.onap.so</groupId>
228 <artifactId>mso-catalog-db</artifactId>
229 <version>${project.version}</version>
230 </dependency>
231 <dependency>
232 <groupId>org.onap.so</groupId>
233 <artifactId>mso-requests-db</artifactId>
234 <version>${project.version}</version>
235 </dependency>
236 <dependency>
237 <groupId>org.onap.so</groupId>
238 <artifactId>common</artifactId>
239 <version>${project.version}</version>
240 </dependency>
241 <dependency>
242 <groupId>org.onap.so.adapters</groupId>
243 <artifactId>mso-adapters-rest-interface</artifactId>
244 <version>${project.version}</version>
245 </dependency>
246 <dependency>
247 <groupId>javax.servlet</groupId>
248 <artifactId>javax.servlet-api</artifactId>
249 </dependency>
250 <dependency>
251 <groupId>org.apache.httpcomponents</groupId>
252 <artifactId>httpclient</artifactId>
253 </dependency>
254 <dependency>
255 <groupId>commons-lang</groupId>
256 <artifactId>commons-lang</artifactId>
257 <version>2.6</version>
258 </dependency>
259 <dependency>
260 <groupId>com.jayway.jsonpath</groupId>
261 <artifactId>json-path</artifactId>
262 </dependency>
263 <dependency>
264 <groupId>javax.ws.rs</groupId>
265 <artifactId>javax.ws.rs-api</artifactId>
266 <version>${jax.ws.rs}</version>
267 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400268
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400269 <dependency>
270 <groupId>org.onap.appc.client</groupId>
271 <artifactId>client-lib</artifactId>
eeginux8ef2ec82019-05-23 10:51:36 +0100272 <version>${appc.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400273 <exclusions>
274 <exclusion>
275 <groupId>org.mockito</groupId>
276 <artifactId>mockito-core</artifactId>
277 </exclusion>
278 <exclusion>
279 <groupId>org.powermock</groupId>
280 <artifactId>powermock-module-junit4</artifactId>
281 </exclusion>
282 <exclusion>
283 <groupId>org.powermock</groupId>
284 <artifactId>powermock-api-mockito</artifactId>
285 </exclusion>
286 </exclusions>
287 </dependency>
288 <dependency>
289 <groupId>org.onap.appc.client</groupId>
290 <artifactId>client-kit</artifactId>
eeginux8ef2ec82019-05-23 10:51:36 +0100291 <version>${appc.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400292 <exclusions>
293 <exclusion>
294 <groupId>org.mockito</groupId>
295 <artifactId>mockito-core</artifactId>
296 </exclusion>
297 </exclusions>
298 </dependency>
299 <dependency>
300 <groupId>org.aspectj</groupId>
301 <artifactId>aspectjrt</artifactId>
302 </dependency>
303 <dependency>
304 <groupId>org.json</groupId>
305 <artifactId>json</artifactId>
306 </dependency>
307 <dependency>
308 <groupId>org.glassfish.jersey.core</groupId>
309 <artifactId>jersey-common</artifactId>
310 </dependency>
311 <dependency>
312 <groupId>org.glassfish.jersey.core</groupId>
313 <artifactId>jersey-client</artifactId>
314 </dependency>
315 <dependency>
316 <groupId>org.glassfish.jersey.inject</groupId>
317 <artifactId>jersey-hk2</artifactId>
318 <version>2.26</version>
319 </dependency>
320 <dependency>
321 <groupId>org.glassfish.jersey.media</groupId>
322 <artifactId>jersey-media-json-jackson</artifactId>
323 </dependency>
324 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400325 <groupId>org.springframework.boot</groupId>
326 <artifactId>spring-boot-starter-test</artifactId>
327 <scope>test</scope>
328 </dependency>
329 <dependency>
330 <groupId>uk.co.blackpepper.bowman</groupId>
331 <artifactId>bowman-client</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400332 <version>${bowman.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400333 </dependency>
334 <dependency>
335 <groupId>pl.pragmatists</groupId>
336 <artifactId>JUnitParams</artifactId>
337 <version>1.1.0</version>
338 </dependency>
339 <dependency>
340 <groupId>ch.vorburger.mariaDB4j</groupId>
341 <artifactId>mariaDB4j</artifactId>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500342 <version>2.3.0</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400343 <scope>test</scope>
344 </dependency>
345 <dependency>
346 <groupId>org.springframework.cloud</groupId>
347 <artifactId>spring-cloud-contract-wiremock</artifactId>
348 <version>1.2.4.RELEASE</version>
349 <scope>test</scope>
350 </dependency>
351 <dependency>
352 <groupId>org.assertj</groupId>
353 <artifactId>assertj-core</artifactId>
354 <version>3.11.1</version>
355 <scope>test</scope>
356 </dependency>
357 </dependencies>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500358</project>