blob: e6dfc20db56ef21cc700245e3a3a662a1587ab1e [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>
seshukmadbd1c42020-08-03 19:23:51 +05307 <version>1.7.1-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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400134 <scope>test</scope>
135 </dependency>
136 <dependency>
137 <groupId>org.camunda.bpm.springboot</groupId>
138 <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400139 <scope>test</scope>
140 </dependency>
141 <dependency>
142 <groupId>org.apache.cxf</groupId>
143 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400144 </dependency>
145 <dependency>
146 <groupId>org.apache.cxf</groupId>
147 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400148 </dependency>
149 <dependency>
150 <groupId>org.apache.cxf</groupId>
151 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400152 </dependency>
153 <dependency>
154 <groupId>com.h2database</groupId>
155 <artifactId>h2</artifactId>
156 <scope>test</scope>
157 </dependency>
158 <dependency>
159 <groupId>com.google.guava</groupId>
160 <artifactId>guava</artifactId>
161 </dependency>
162 <dependency>
163 <groupId>com.fasterxml.uuid</groupId>
164 <artifactId>java-uuid-generator</artifactId>
165 </dependency>
166 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400167 <groupId>org.apache.commons</groupId>
168 <artifactId>commons-lang3</artifactId>
169 </dependency>
170 <dependency>
171 <groupId>org.onap.so</groupId>
172 <artifactId>MSOCoreBPMN</artifactId>
173 <version>${project.version}</version>
174 </dependency>
175 <dependency>
176 <groupId>org.onap.so</groupId>
177 <artifactId>MSOCommonBPMN</artifactId>
178 <version>${project.version}</version>
179 </dependency>
180 <dependency>
181 <groupId>org.onap.so</groupId>
182 <artifactId>MSOCoreBPMN</artifactId>
183 <version>${project.version}</version>
184 <classifier>tests</classifier>
185 <scope>test</scope>
186 </dependency>
187 <dependency>
188 <groupId>javax.ws.rs</groupId>
189 <artifactId>javax.ws.rs-api</artifactId>
190 <version>${jax.ws.rs}</version>
191 </dependency>
192 <dependency>
193 <groupId>org.camunda.spin</groupId>
194 <artifactId>camunda-spin-core</artifactId>
195 <scope>test</scope>
196 </dependency>
197 <dependency>
198 <groupId>org.camunda.spin</groupId>
199 <artifactId>camunda-spin-dataformat-all</artifactId>
200 <scope>test</scope>
201 </dependency>
202 <dependency>
203 <artifactId>camunda-spin-dataformat-all</artifactId>
204 <groupId>org.camunda.spin</groupId>
205 <scope>test</scope>
206 </dependency>
207 <dependency>
208 <groupId>org.camunda.bpm</groupId>
209 <artifactId>camunda-engine-plugin-spin</artifactId>
210 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400211
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400212 <dependency>
213 <groupId>org.camunda.bpm</groupId>
214 <artifactId>camunda-engine-plugin-connect</artifactId>
215 <scope>test</scope>
216 </dependency>
217 <dependency>
218 <groupId>javax.annotation</groupId>
219 <artifactId>javax.annotation-api</artifactId>
220 </dependency>
221 <dependency>
222 <groupId>org.onap.msb.java-sdk</groupId>
223 <artifactId>msb-java-sdk</artifactId>
224 <version>1.1.1</version>
225 <exclusions>
226 <exclusion>
227 <groupId>com.eclipsesource.jaxrs</groupId>
228 <artifactId>jersey-all</artifactId>
229 </exclusion>
230 </exclusions>
231 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400232
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400233 <dependency>
234 <groupId>org.springframework.boot</groupId>
235 <artifactId>spring-boot-configuration-processor</artifactId>
236 <optional>true</optional>
237 </dependency>
238 <dependency>
239 <groupId>ch.qos.logback</groupId>
240 <artifactId>logback-classic</artifactId>
241 </dependency>
242 <dependency>
243 <groupId>ch.qos.logback</groupId>
244 <artifactId>logback-core</artifactId>
245 </dependency>
246 <dependency>
247 <groupId>org.slf4j</groupId>
248 <artifactId>slf4j-api</artifactId>
249 </dependency>
250 <dependency>
251 <groupId>org.mariadb.jdbc</groupId>
252 <artifactId>mariadb-java-client</artifactId>
253 </dependency>
254 <dependency>
255 <groupId>ch.vorburger.mariaDB4j</groupId>
256 <artifactId>mariaDB4j</artifactId>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500257 <version>2.3.0</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400258 <scope>test</scope>
259 </dependency>
260 <dependency>
261 <groupId>org.onap.so</groupId>
262 <artifactId>MSOCommonBPMN</artifactId>
263 <version>${project.version}</version>
264 <classifier>tests</classifier>
265 <scope>test</scope>
266 </dependency>
267 <dependency>
268 <groupId>org.camunda.bpm.springboot</groupId>
269 <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400270 <scope>test</scope>
271 </dependency>
272 <dependency>
273 <groupId>org.assertj</groupId>
274 <artifactId>assertj-core</artifactId>
275 <scope>test</scope>
276 </dependency>
277 <dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400278 <groupId>org.codehaus.groovy</groupId>
279 <artifactId>groovy-test</artifactId>
280 <scope>test</scope>
281 </dependency>
282 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400283 <groupId>org.camunda.bpm.extension.mockito</groupId>
284 <artifactId>camunda-bpm-mockito</artifactId>
285 </dependency>
Priyadharshini6f164282020-08-13 03:22:58 -0700286 <dependency>
287 <groupId>org.codehaus.groovy</groupId>
288 <artifactId>groovy-dateutil</artifactId>
289 <version>2.5.8</version>
290 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400291 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400292</project>