blob: ec8ad3127cdbe79a2abb2bf07b728d5ca7259323 [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 <properties>
15 <maven.compiler.target>1.8</maven.compiler.target>
16 <maven.compiler.source>1.8</maven.compiler.source>
17 </properties>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -050018
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040019 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-compiler-plugin</artifactId>
Benjamin, Max26275322020-03-16 10:09:29 -040024 <version>3.8.0</version>
Boslet, Cory3db9a382020-04-02 15:17:22 -040025 <configuration>
Benjamin, Max26275322020-03-16 10:09:29 -040026 <compilerId>groovy-eclipse-compiler</compilerId>
27 </configuration>
28
29 <dependencies>
30 <dependency>
31 <groupId>org.codehaus.groovy</groupId>
32 <artifactId>groovy-eclipse-compiler</artifactId>
33 <version>3.6.0-03</version>
34 </dependency>
35 <dependency>
36 <groupId>org.codehaus.groovy</groupId>
37 <artifactId>groovy-eclipse-batch</artifactId>
38 <version>2.4.19-01</version>
39 </dependency>
40 </dependencies>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040041 </plugin>
Rob Daugherty38f72072018-03-14 02:07:32 -040042
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040043 <plugin>
44 <groupId>org.apache.maven.plugins</groupId>
45 <artifactId>maven-jar-plugin</artifactId>
46 <version>3.0.2</version>
47 <executions>
48 <execution>
49 <goals>
50 <goal>test-jar</goal>
51 </goals>
52 <configuration>
53 <skip>false</skip>
54 <excludes>
55 <exclude>**/validation/*</exclude>
56 </excludes>
57 </configuration>
58 </execution>
59 </executions>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.cxf</groupId>
63 <artifactId>cxf-codegen-plugin</artifactId>
64 <version>2.5.2</version>
65 </plugin>
66 <plugin>
67 <groupId>org.apache.maven.plugins</groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040068 <artifactId>maven-surefire-plugin</artifactId>
69 <executions>
70 <execution>
71 <id>default-test</id>
72 <goals>
73 <goal>test</goal>
74 </goals>
75 <configuration>
76 <includes>
77 <include>**/AllTestSuites.java</include>
78 </includes>
79 </configuration>
80 </execution>
81 <execution>
82 <id>non-spring-tests</id>
83 <goals>
84 <goal>test</goal>
85 </goals>
86 <configuration>
87 <includes>
88 <include>**/NonSpringSuite.java</include>
89 </includes>
90 </configuration>
91 </execution>
92 <execution>
93 <id>groovy-tests</id>
94 <goals>
95 <goal>test</goal>
96 </goals>
97 <configuration>
98 <includes>
99 <include>**/AllGroovyTestSuites.java</include>
100 </includes>
101 </configuration>
102 </execution>
103 </executions>
104 <configuration>
105 <parallel>suites</parallel>
106 </configuration>
107 </plugin>
108 </plugins>
109 <pluginManagement>
110 <plugins>
Benjamin, Max26275322020-03-16 10:09:29 -0400111 <!--This plugin's configuration is used to store Eclipse m2e settings
112 only. It has no influence on the Maven build itself. -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400113 <plugin>
114 <groupId>org.eclipse.m2e</groupId>
115 <artifactId>lifecycle-mapping</artifactId>
116 <version>1.0.0</version>
117 <configuration>
118 <lifecycleMappingMetadata>
119 <pluginExecutions>
120 <pluginExecution>
121 <pluginExecutionFilter>
122 <groupId>
Benjamin, Max26275322020-03-16 10:09:29 -0400123 org.apache.maven.plugins
124 </groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400125 <artifactId>
Benjamin, Max26275322020-03-16 10:09:29 -0400126 maven-antrun-plugin
127 </artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400128 <versionRange>
Benjamin, Max26275322020-03-16 10:09:29 -0400129 [1.3,)
130 </versionRange>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400131 <goals>
132 <goal>run</goal>
133 </goals>
134 </pluginExecutionFilter>
135 <action>
136 <ignore>
137 </ignore>
138 </action>
139 </pluginExecution>
140 </pluginExecutions>
141 </lifecycleMappingMetadata>
142 </configuration>
143 </plugin>
144 </plugins>
145 </pluginManagement>
146 </build>
147 <dependencyManagement>
148 <dependencies>
149 <dependency>
150 <!-- Import dependency management from camunda -->
151 <groupId>org.camunda.bpm</groupId>
152 <artifactId>camunda-bom</artifactId>
153 <version>${camunda.version}</version>
154 <scope>import</scope>
155 <type>pom</type>
156 </dependency>
157 </dependencies>
158 </dependencyManagement>
159 <dependencies>
160 <dependency>
161 <groupId>org.camunda.bpm.springboot</groupId>
162 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
163 <version>${camunda.springboot.version}</version>
164 <scope>test</scope>
165 </dependency>
166 <dependency>
167 <groupId>org.springframework.cloud</groupId>
168 <artifactId>spring-cloud-contract-wiremock</artifactId>
169 <version>1.2.4.RELEASE</version>
170 <scope>test</scope>
171 </dependency>
172 <dependency>
173 <groupId>org.springframework.boot</groupId>
174 <artifactId>spring-boot-starter-test</artifactId>
175 <scope>test</scope>
176 </dependency>
177 <dependency>
178 <groupId>org.camunda.bpm.extension.mockito</groupId>
179 <artifactId>camunda-bpm-mockito</artifactId>
180 <version>3.2.1</version>
181 <scope>test</scope>
182 </dependency>
183 <dependency>
184 <groupId>org.camunda.connect</groupId>
185 <artifactId>camunda-connect-connectors-all</artifactId>
186 </dependency>
187 <dependency>
188 <groupId>commons-beanutils</groupId>
189 <artifactId>commons-beanutils</artifactId>
190 <version>1.9.3</version>
191 </dependency>
192 <dependency>
193 <groupId>org.springframework.boot</groupId>
194 <artifactId>spring-boot-starter-actuator</artifactId>
195 </dependency>
196 <dependency>
197 <groupId>org.springframework.boot</groupId>
198 <artifactId>spring-boot-starter-web</artifactId>
199 </dependency>
200 <dependency>
201 <!-- Needed for InMemoryH2Test -->
202 <groupId>com.h2database</groupId>
203 <artifactId>h2</artifactId>
204 <scope>test</scope>
205 </dependency>
206 <dependency>
207 <groupId>org.codehaus.groovy</groupId>
208 <artifactId>groovy-all</artifactId>
209 </dependency>
210 <dependency>
211 <groupId>org.onap.so</groupId>
212 <artifactId>MSOCoreBPMN</artifactId>
213 <version>${project.version}</version>
214 </dependency>
215 <dependency>
216 <groupId>org.onap.so</groupId>
217 <artifactId>mso-catalog-db</artifactId>
218 <version>${project.version}</version>
219 </dependency>
220 <dependency>
221 <groupId>org.onap.so</groupId>
222 <artifactId>mso-requests-db</artifactId>
223 <version>${project.version}</version>
224 </dependency>
225 <dependency>
226 <groupId>org.onap.so</groupId>
227 <artifactId>common</artifactId>
228 <version>${project.version}</version>
229 </dependency>
230 <dependency>
231 <groupId>org.onap.so.adapters</groupId>
232 <artifactId>mso-adapters-rest-interface</artifactId>
233 <version>${project.version}</version>
234 </dependency>
235 <dependency>
236 <groupId>javax.servlet</groupId>
237 <artifactId>javax.servlet-api</artifactId>
238 </dependency>
239 <dependency>
240 <groupId>org.apache.httpcomponents</groupId>
241 <artifactId>httpclient</artifactId>
242 </dependency>
243 <dependency>
244 <groupId>commons-lang</groupId>
245 <artifactId>commons-lang</artifactId>
246 <version>2.6</version>
247 </dependency>
248 <dependency>
249 <groupId>com.jayway.jsonpath</groupId>
250 <artifactId>json-path</artifactId>
251 </dependency>
252 <dependency>
253 <groupId>javax.ws.rs</groupId>
254 <artifactId>javax.ws.rs-api</artifactId>
255 <version>${jax.ws.rs}</version>
256 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400257
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400258 <dependency>
259 <groupId>org.onap.appc.client</groupId>
260 <artifactId>client-lib</artifactId>
eeginux8ef2ec82019-05-23 10:51:36 +0100261 <version>${appc.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400262 <exclusions>
263 <exclusion>
264 <groupId>org.mockito</groupId>
265 <artifactId>mockito-core</artifactId>
266 </exclusion>
267 <exclusion>
268 <groupId>org.powermock</groupId>
269 <artifactId>powermock-module-junit4</artifactId>
270 </exclusion>
271 <exclusion>
272 <groupId>org.powermock</groupId>
273 <artifactId>powermock-api-mockito</artifactId>
274 </exclusion>
275 </exclusions>
276 </dependency>
277 <dependency>
278 <groupId>org.onap.appc.client</groupId>
279 <artifactId>client-kit</artifactId>
eeginux8ef2ec82019-05-23 10:51:36 +0100280 <version>${appc.client.version}</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400281 <exclusions>
282 <exclusion>
283 <groupId>org.mockito</groupId>
284 <artifactId>mockito-core</artifactId>
285 </exclusion>
286 </exclusions>
287 </dependency>
288 <dependency>
289 <groupId>org.aspectj</groupId>
290 <artifactId>aspectjrt</artifactId>
291 </dependency>
292 <dependency>
293 <groupId>org.json</groupId>
294 <artifactId>json</artifactId>
295 </dependency>
296 <dependency>
297 <groupId>org.glassfish.jersey.core</groupId>
298 <artifactId>jersey-common</artifactId>
299 </dependency>
300 <dependency>
301 <groupId>org.glassfish.jersey.core</groupId>
302 <artifactId>jersey-client</artifactId>
303 </dependency>
304 <dependency>
305 <groupId>org.glassfish.jersey.inject</groupId>
306 <artifactId>jersey-hk2</artifactId>
307 <version>2.26</version>
308 </dependency>
309 <dependency>
310 <groupId>org.glassfish.jersey.media</groupId>
311 <artifactId>jersey-media-json-jackson</artifactId>
312 </dependency>
313 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400314 <groupId>org.springframework.boot</groupId>
315 <artifactId>spring-boot-starter-test</artifactId>
316 <scope>test</scope>
317 </dependency>
318 <dependency>
319 <groupId>uk.co.blackpepper.bowman</groupId>
320 <artifactId>bowman-client</artifactId>
321 <version>0.3.0</version>
322 </dependency>
323 <dependency>
324 <groupId>pl.pragmatists</groupId>
325 <artifactId>JUnitParams</artifactId>
326 <version>1.1.0</version>
327 </dependency>
328 <dependency>
329 <groupId>ch.vorburger.mariaDB4j</groupId>
330 <artifactId>mariaDB4j</artifactId>
331 <version>2.2.3</version>
332 <scope>test</scope>
333 </dependency>
334 <dependency>
335 <groupId>org.springframework.cloud</groupId>
336 <artifactId>spring-cloud-contract-wiremock</artifactId>
337 <version>1.2.4.RELEASE</version>
338 <scope>test</scope>
339 </dependency>
340 <dependency>
341 <groupId>org.assertj</groupId>
342 <artifactId>assertj-core</artifactId>
343 <version>3.11.1</version>
344 <scope>test</scope>
345 </dependency>
346 </dependencies>
Benjamin, Max (mb388a)13728942017-11-06 15:01:36 -0500347</project>