blob: c6a4ffc01da2c6b0b4f2f9f863856a3e5d0b639e [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>
Benjamin, Max26275322020-03-16 10:09:29 -040041 <dependencies>
42 <dependency>
43 <groupId>org.codehaus.groovy</groupId>
44 <artifactId>groovy-eclipse-compiler</artifactId>
45 <version>3.6.0-03</version>
46 </dependency>
47 <dependency>
48 <groupId>org.codehaus.groovy</groupId>
49 <artifactId>groovy-eclipse-batch</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -040050 <version>2.5.8-03</version>
Benjamin, Max26275322020-03-16 10:09:29 -040051 </dependency>
52 </dependencies>
53 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040054 </plugins>
55 <pluginManagement>
56 <plugins>
Benjamin, Max71d87a32020-06-24 10:44:53 -040057 <plugin>
Boslet, Coryf5c3da82020-05-20 11:39:21 -040058 <groupId>org.eclipse.m2e</groupId>
59 <artifactId>lifecycle-mapping</artifactId>
60 <version>1.0.0</version>
61 <configuration>
62 <lifecycleMappingMetadata>
63 <pluginExecutions>
64 <pluginExecution>
65 <pluginExecutionFilter>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-dependency-plugin</artifactId>
68 <versionRange>[1.0.0,)</versionRange>
69 <goals>
70 <goal>unpack</goal>
71 </goals>
72 </pluginExecutionFilter>
73 <action>
74 <execute />
75 </action>
76 </pluginExecution>
77 </pluginExecutions>
78 </lifecycleMappingMetadata>
79 </configuration>
80 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040081 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-surefire-plugin</artifactId>
84 <executions>
85 <execution>
86 <id>default-test</id>
87 <goals>
88 <goal>test</goal>
89 </goals>
90 <configuration>
91 <includes>
92 <include>**/AllTestsTestSuite.java</include>
93 </includes>
94 </configuration>
95 </execution>
96 <execution>
97 <id>tasks-test</id>
98 <goals>
99 <goal>test</goal>
100 </goals>
101 <configuration>
102 <includes>
103 <include>**/AllTasksTestsTestSuite.java</include>
104 </includes>
105 </configuration>
106 </execution>
107 </executions>
108 <configuration>
109 <parallel>suites</parallel>
110 </configuration>
111 </plugin>
112 </plugins>
113 </pluginManagement>
114 <finalName>${project.artifactId}-${project.version}</finalName>
115 </build>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400116 <dependencies>
117 <dependency>
118 <groupId>org.camunda.bpm.springboot</groupId>
119 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400120 <scope>test</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.camunda.bpm.springboot</groupId>
124 <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400125 <scope>test</scope>
126 </dependency>
127 <dependency>
128 <groupId>org.apache.cxf</groupId>
129 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400130 </dependency>
131 <dependency>
132 <groupId>org.apache.cxf</groupId>
133 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400134 </dependency>
BOSLET, CORY8aca4512021-03-09 22:57:29 -0500135 <dependency>
136 <groupId>org.apache.cxf</groupId>
137 <artifactId>cxf-rt-rs-service-description-openapi-v3</artifactId>
138 <version>3.4.2</version>
139</dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400140 <dependency>
141 <groupId>com.h2database</groupId>
142 <artifactId>h2</artifactId>
143 <scope>test</scope>
144 </dependency>
145 <dependency>
146 <groupId>com.google.guava</groupId>
147 <artifactId>guava</artifactId>
148 </dependency>
149 <dependency>
150 <groupId>com.fasterxml.uuid</groupId>
151 <artifactId>java-uuid-generator</artifactId>
152 </dependency>
153 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400154 <groupId>org.apache.commons</groupId>
155 <artifactId>commons-lang3</artifactId>
156 </dependency>
157 <dependency>
158 <groupId>org.onap.so</groupId>
159 <artifactId>MSOCoreBPMN</artifactId>
160 <version>${project.version}</version>
161 </dependency>
162 <dependency>
163 <groupId>org.onap.so</groupId>
164 <artifactId>MSOCommonBPMN</artifactId>
165 <version>${project.version}</version>
166 </dependency>
167 <dependency>
168 <groupId>org.onap.so</groupId>
169 <artifactId>MSOCoreBPMN</artifactId>
170 <version>${project.version}</version>
171 <classifier>tests</classifier>
172 <scope>test</scope>
173 </dependency>
174 <dependency>
175 <groupId>javax.ws.rs</groupId>
176 <artifactId>javax.ws.rs-api</artifactId>
177 <version>${jax.ws.rs}</version>
178 </dependency>
179 <dependency>
180 <groupId>org.camunda.spin</groupId>
181 <artifactId>camunda-spin-core</artifactId>
182 <scope>test</scope>
183 </dependency>
184 <dependency>
185 <groupId>org.camunda.spin</groupId>
186 <artifactId>camunda-spin-dataformat-all</artifactId>
187 <scope>test</scope>
188 </dependency>
189 <dependency>
190 <artifactId>camunda-spin-dataformat-all</artifactId>
191 <groupId>org.camunda.spin</groupId>
192 <scope>test</scope>
193 </dependency>
194 <dependency>
195 <groupId>org.camunda.bpm</groupId>
196 <artifactId>camunda-engine-plugin-spin</artifactId>
197 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400198
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400199 <dependency>
200 <groupId>org.camunda.bpm</groupId>
201 <artifactId>camunda-engine-plugin-connect</artifactId>
202 <scope>test</scope>
203 </dependency>
204 <dependency>
205 <groupId>javax.annotation</groupId>
206 <artifactId>javax.annotation-api</artifactId>
207 </dependency>
208 <dependency>
209 <groupId>org.onap.msb.java-sdk</groupId>
210 <artifactId>msb-java-sdk</artifactId>
211 <version>1.1.1</version>
212 <exclusions>
213 <exclusion>
214 <groupId>com.eclipsesource.jaxrs</groupId>
215 <artifactId>jersey-all</artifactId>
216 </exclusion>
217 </exclusions>
218 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400219
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400220 <dependency>
221 <groupId>org.springframework.boot</groupId>
222 <artifactId>spring-boot-configuration-processor</artifactId>
223 <optional>true</optional>
224 </dependency>
225 <dependency>
226 <groupId>ch.qos.logback</groupId>
227 <artifactId>logback-classic</artifactId>
228 </dependency>
229 <dependency>
230 <groupId>ch.qos.logback</groupId>
231 <artifactId>logback-core</artifactId>
232 </dependency>
233 <dependency>
234 <groupId>org.slf4j</groupId>
235 <artifactId>slf4j-api</artifactId>
236 </dependency>
237 <dependency>
238 <groupId>org.mariadb.jdbc</groupId>
239 <artifactId>mariadb-java-client</artifactId>
240 </dependency>
241 <dependency>
242 <groupId>ch.vorburger.mariaDB4j</groupId>
243 <artifactId>mariaDB4j</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400244 <scope>test</scope>
245 </dependency>
246 <dependency>
247 <groupId>org.onap.so</groupId>
248 <artifactId>MSOCommonBPMN</artifactId>
249 <version>${project.version}</version>
250 <classifier>tests</classifier>
251 <scope>test</scope>
252 </dependency>
253 <dependency>
254 <groupId>org.camunda.bpm.springboot</groupId>
255 <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400256 <scope>test</scope>
257 </dependency>
258 <dependency>
259 <groupId>org.assertj</groupId>
260 <artifactId>assertj-core</artifactId>
261 <scope>test</scope>
262 </dependency>
263 <dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400264 <groupId>org.codehaus.groovy</groupId>
265 <artifactId>groovy-test</artifactId>
266 <scope>test</scope>
267 </dependency>
268 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400269 <groupId>org.camunda.bpm.extension.mockito</groupId>
270 <artifactId>camunda-bpm-mockito</artifactId>
271 </dependency>
Priyadharshini6f164282020-08-13 03:22:58 -0700272 <dependency>
273 <groupId>org.codehaus.groovy</groupId>
274 <artifactId>groovy-dateutil</artifactId>
275 <version>2.5.8</version>
276 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400277 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400278</project>