blob: 075f6f8fdd1e22010901a4caa7c4f1e98a23f37e [file] [log] [blame]
Gary Wu1c1fc782018-08-24 15:30:22 -07001<?xml version="1.0"?>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <parent>
5 <groupId>org.onap.so</groupId>
6 <artifactId>bpmn</artifactId>
seshukmb9af26a2020-02-26 19:30:17 +08007 <version>1.6.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04008 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <artifactId>so-bpmn-infrastructure-common</artifactId>
11 <packaging>jar</packaging>
12 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.cxf</groupId>
16 <artifactId>cxf-codegen-plugin</artifactId>
17 <version>2.5.2</version>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040021 <artifactId>maven-dependency-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <artifactId>maven-failsafe-plugin</artifactId>
25 <version>2.6</version>
26 <executions>
27 <execution>
28 <goals>
29 <goal>integration-test</goal>
30 <goal>verify</goal>
31 </goals>
32 </execution>
33 </executions>
34 </plugin>
Boslet, Cory3db9a382020-04-02 15:17:22 -040035 <plugin>
Benjamin, Max26275322020-03-16 10:09:29 -040036 <groupId>org.apache.maven.plugins</groupId>
37 <artifactId>maven-compiler-plugin</artifactId>
Boslet, Cory3db9a382020-04-02 15:17:22 -040038 <configuration>
Benjamin, Max26275322020-03-16 10:09:29 -040039 <compilerId>groovy-eclipse-compiler</compilerId>
40 </configuration>
41
42 <dependencies>
43 <dependency>
44 <groupId>org.codehaus.groovy</groupId>
45 <artifactId>groovy-eclipse-compiler</artifactId>
46 <version>3.6.0-03</version>
47 </dependency>
48 <dependency>
49 <groupId>org.codehaus.groovy</groupId>
50 <artifactId>groovy-eclipse-batch</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -040051 <version>2.5.8-03</version>
Benjamin, Max26275322020-03-16 10:09:29 -040052 </dependency>
53 </dependencies>
54 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040055 </plugins>
56 <pluginManagement>
57 <plugins>
Benjamin, Max71d87a32020-06-24 10:44:53 -040058 <plugin>
Boslet, Coryf5c3da82020-05-20 11:39:21 -040059 <groupId>org.eclipse.m2e</groupId>
60 <artifactId>lifecycle-mapping</artifactId>
61 <version>1.0.0</version>
62 <configuration>
63 <lifecycleMappingMetadata>
64 <pluginExecutions>
65 <pluginExecution>
66 <pluginExecutionFilter>
67 <groupId>org.apache.maven.plugins</groupId>
68 <artifactId>maven-dependency-plugin</artifactId>
69 <versionRange>[1.0.0,)</versionRange>
70 <goals>
71 <goal>unpack</goal>
72 </goals>
73 </pluginExecutionFilter>
74 <action>
75 <execute />
76 </action>
77 </pluginExecution>
78 </pluginExecutions>
79 </lifecycleMappingMetadata>
80 </configuration>
81 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040082 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-surefire-plugin</artifactId>
85 <executions>
86 <execution>
87 <id>default-test</id>
88 <goals>
89 <goal>test</goal>
90 </goals>
91 <configuration>
92 <includes>
93 <include>**/AllTestsTestSuite.java</include>
94 </includes>
95 </configuration>
96 </execution>
97 <execution>
98 <id>tasks-test</id>
99 <goals>
100 <goal>test</goal>
101 </goals>
102 <configuration>
103 <includes>
104 <include>**/AllTasksTestsTestSuite.java</include>
105 </includes>
106 </configuration>
107 </execution>
108 </executions>
109 <configuration>
110 <parallel>suites</parallel>
111 </configuration>
112 </plugin>
113 </plugins>
114 </pluginManagement>
115 <finalName>${project.artifactId}-${project.version}</finalName>
116 </build>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400117
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400118 <dependencyManagement>
119 <dependencies>
120 <dependency>
121 <groupId>org.camunda.bpm</groupId>
122 <artifactId>camunda-bom</artifactId>
123 <version>${camunda.version}</version>
124 <scope>import</scope>
125 <type>pom</type>
126 </dependency>
127 </dependencies>
128 </dependencyManagement>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400129
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400130 <dependencies>
131 <dependency>
132 <groupId>org.camunda.bpm.springboot</groupId>
133 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
134 <version>${camunda.springboot.version}</version>
135 <scope>test</scope>
136 </dependency>
137 <dependency>
138 <groupId>org.camunda.bpm.springboot</groupId>
139 <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
140 <version>${camunda.springboot.version}</version>
141 <scope>test</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.apache.cxf</groupId>
145 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
146 <version>${cxf.version}</version>
147 </dependency>
148 <dependency>
149 <groupId>org.apache.cxf</groupId>
150 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
151 <version>${cxf.version}</version>
152 </dependency>
153 <dependency>
154 <groupId>org.apache.cxf</groupId>
155 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
156 <version>${cxf.version}</version>
157 </dependency>
158 <dependency>
159 <groupId>com.h2database</groupId>
160 <artifactId>h2</artifactId>
161 <scope>test</scope>
162 </dependency>
163 <dependency>
164 <groupId>com.google.guava</groupId>
165 <artifactId>guava</artifactId>
166 </dependency>
167 <dependency>
168 <groupId>com.fasterxml.uuid</groupId>
169 <artifactId>java-uuid-generator</artifactId>
170 </dependency>
171 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400172 <groupId>org.apache.commons</groupId>
173 <artifactId>commons-lang3</artifactId>
174 </dependency>
175 <dependency>
176 <groupId>org.onap.so</groupId>
177 <artifactId>MSOCoreBPMN</artifactId>
178 <version>${project.version}</version>
179 </dependency>
180 <dependency>
181 <groupId>org.onap.so</groupId>
182 <artifactId>MSOCommonBPMN</artifactId>
183 <version>${project.version}</version>
184 </dependency>
185 <dependency>
186 <groupId>org.onap.so</groupId>
187 <artifactId>MSOCoreBPMN</artifactId>
188 <version>${project.version}</version>
189 <classifier>tests</classifier>
190 <scope>test</scope>
191 </dependency>
192 <dependency>
193 <groupId>javax.ws.rs</groupId>
194 <artifactId>javax.ws.rs-api</artifactId>
195 <version>${jax.ws.rs}</version>
196 </dependency>
197 <dependency>
198 <groupId>org.camunda.spin</groupId>
199 <artifactId>camunda-spin-core</artifactId>
200 <scope>test</scope>
201 </dependency>
202 <dependency>
203 <groupId>org.camunda.spin</groupId>
204 <artifactId>camunda-spin-dataformat-all</artifactId>
205 <scope>test</scope>
206 </dependency>
207 <dependency>
208 <artifactId>camunda-spin-dataformat-all</artifactId>
209 <groupId>org.camunda.spin</groupId>
210 <scope>test</scope>
211 </dependency>
212 <dependency>
213 <groupId>org.camunda.bpm</groupId>
214 <artifactId>camunda-engine-plugin-spin</artifactId>
215 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400216
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400217 <dependency>
218 <groupId>org.camunda.bpm</groupId>
219 <artifactId>camunda-engine-plugin-connect</artifactId>
220 <scope>test</scope>
221 </dependency>
222 <dependency>
223 <groupId>javax.annotation</groupId>
224 <artifactId>javax.annotation-api</artifactId>
225 </dependency>
226 <dependency>
227 <groupId>org.onap.msb.java-sdk</groupId>
228 <artifactId>msb-java-sdk</artifactId>
229 <version>1.1.1</version>
230 <exclusions>
231 <exclusion>
232 <groupId>com.eclipsesource.jaxrs</groupId>
233 <artifactId>jersey-all</artifactId>
234 </exclusion>
235 </exclusions>
236 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400237
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400238 <dependency>
239 <groupId>org.springframework.boot</groupId>
240 <artifactId>spring-boot-configuration-processor</artifactId>
241 <optional>true</optional>
242 </dependency>
243 <dependency>
244 <groupId>ch.qos.logback</groupId>
245 <artifactId>logback-classic</artifactId>
246 </dependency>
247 <dependency>
248 <groupId>ch.qos.logback</groupId>
249 <artifactId>logback-core</artifactId>
250 </dependency>
251 <dependency>
252 <groupId>org.slf4j</groupId>
253 <artifactId>slf4j-api</artifactId>
254 </dependency>
255 <dependency>
256 <groupId>org.mariadb.jdbc</groupId>
257 <artifactId>mariadb-java-client</artifactId>
258 </dependency>
259 <dependency>
260 <groupId>ch.vorburger.mariaDB4j</groupId>
261 <artifactId>mariaDB4j</artifactId>
262 <version>2.2.3</version>
263 <scope>test</scope>
264 </dependency>
265 <dependency>
266 <groupId>org.onap.so</groupId>
267 <artifactId>MSOCommonBPMN</artifactId>
268 <version>${project.version}</version>
269 <classifier>tests</classifier>
270 <scope>test</scope>
271 </dependency>
272 <dependency>
273 <groupId>org.camunda.bpm.springboot</groupId>
274 <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
275 <version>${camunda.springboot.version}</version>
276 <scope>test</scope>
277 </dependency>
278 <dependency>
279 <groupId>org.assertj</groupId>
280 <artifactId>assertj-core</artifactId>
281 <scope>test</scope>
282 </dependency>
283 <dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400284 <groupId>org.codehaus.groovy</groupId>
285 <artifactId>groovy-test</artifactId>
286 <scope>test</scope>
287 </dependency>
288 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400289 <groupId>org.camunda.bpm.extension.mockito</groupId>
290 <artifactId>camunda-bpm-mockito</artifactId>
291 </dependency>
292 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400293</project>