blob: 3b1aa6a149039c0ad87abbe0193c842655a239a2 [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>
seshukm1c8d0202021-02-15 20:35:29 +05307 <version>1.8.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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400146 </dependency>
147 <dependency>
148 <groupId>org.apache.cxf</groupId>
149 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400150 </dependency>
151 <dependency>
152 <groupId>org.apache.cxf</groupId>
153 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400154 </dependency>
155 <dependency>
156 <groupId>com.h2database</groupId>
157 <artifactId>h2</artifactId>
158 <scope>test</scope>
159 </dependency>
160 <dependency>
161 <groupId>com.google.guava</groupId>
162 <artifactId>guava</artifactId>
163 </dependency>
164 <dependency>
165 <groupId>com.fasterxml.uuid</groupId>
166 <artifactId>java-uuid-generator</artifactId>
167 </dependency>
168 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400169 <groupId>org.apache.commons</groupId>
170 <artifactId>commons-lang3</artifactId>
171 </dependency>
172 <dependency>
173 <groupId>org.onap.so</groupId>
174 <artifactId>MSOCoreBPMN</artifactId>
175 <version>${project.version}</version>
176 </dependency>
177 <dependency>
178 <groupId>org.onap.so</groupId>
179 <artifactId>MSOCommonBPMN</artifactId>
180 <version>${project.version}</version>
181 </dependency>
182 <dependency>
183 <groupId>org.onap.so</groupId>
184 <artifactId>MSOCoreBPMN</artifactId>
185 <version>${project.version}</version>
186 <classifier>tests</classifier>
187 <scope>test</scope>
188 </dependency>
189 <dependency>
190 <groupId>javax.ws.rs</groupId>
191 <artifactId>javax.ws.rs-api</artifactId>
192 <version>${jax.ws.rs}</version>
193 </dependency>
194 <dependency>
195 <groupId>org.camunda.spin</groupId>
196 <artifactId>camunda-spin-core</artifactId>
197 <scope>test</scope>
198 </dependency>
199 <dependency>
200 <groupId>org.camunda.spin</groupId>
201 <artifactId>camunda-spin-dataformat-all</artifactId>
202 <scope>test</scope>
203 </dependency>
204 <dependency>
205 <artifactId>camunda-spin-dataformat-all</artifactId>
206 <groupId>org.camunda.spin</groupId>
207 <scope>test</scope>
208 </dependency>
209 <dependency>
210 <groupId>org.camunda.bpm</groupId>
211 <artifactId>camunda-engine-plugin-spin</artifactId>
212 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400213
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400214 <dependency>
215 <groupId>org.camunda.bpm</groupId>
216 <artifactId>camunda-engine-plugin-connect</artifactId>
217 <scope>test</scope>
218 </dependency>
219 <dependency>
220 <groupId>javax.annotation</groupId>
221 <artifactId>javax.annotation-api</artifactId>
222 </dependency>
223 <dependency>
224 <groupId>org.onap.msb.java-sdk</groupId>
225 <artifactId>msb-java-sdk</artifactId>
226 <version>1.1.1</version>
227 <exclusions>
228 <exclusion>
229 <groupId>com.eclipsesource.jaxrs</groupId>
230 <artifactId>jersey-all</artifactId>
231 </exclusion>
232 </exclusions>
233 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400234
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400235 <dependency>
236 <groupId>org.springframework.boot</groupId>
237 <artifactId>spring-boot-configuration-processor</artifactId>
238 <optional>true</optional>
239 </dependency>
240 <dependency>
241 <groupId>ch.qos.logback</groupId>
242 <artifactId>logback-classic</artifactId>
243 </dependency>
244 <dependency>
245 <groupId>ch.qos.logback</groupId>
246 <artifactId>logback-core</artifactId>
247 </dependency>
248 <dependency>
249 <groupId>org.slf4j</groupId>
250 <artifactId>slf4j-api</artifactId>
251 </dependency>
252 <dependency>
253 <groupId>org.mariadb.jdbc</groupId>
254 <artifactId>mariadb-java-client</artifactId>
255 </dependency>
256 <dependency>
257 <groupId>ch.vorburger.mariaDB4j</groupId>
258 <artifactId>mariaDB4j</artifactId>
259 <version>2.2.3</version>
260 <scope>test</scope>
261 </dependency>
262 <dependency>
263 <groupId>org.onap.so</groupId>
264 <artifactId>MSOCommonBPMN</artifactId>
265 <version>${project.version}</version>
266 <classifier>tests</classifier>
267 <scope>test</scope>
268 </dependency>
269 <dependency>
270 <groupId>org.camunda.bpm.springboot</groupId>
271 <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
272 <version>${camunda.springboot.version}</version>
273 <scope>test</scope>
274 </dependency>
275 <dependency>
276 <groupId>org.assertj</groupId>
277 <artifactId>assertj-core</artifactId>
278 <scope>test</scope>
279 </dependency>
280 <dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400281 <groupId>org.codehaus.groovy</groupId>
282 <artifactId>groovy-test</artifactId>
283 <scope>test</scope>
284 </dependency>
285 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400286 <groupId>org.camunda.bpm.extension.mockito</groupId>
287 <artifactId>camunda-bpm-mockito</artifactId>
288 </dependency>
Priyadharshini6f164282020-08-13 03:22:58 -0700289 <dependency>
290 <groupId>org.codehaus.groovy</groupId>
291 <artifactId>groovy-dateutil</artifactId>
292 <version>2.5.8</version>
293 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400294 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400295</project>