Bump version to 1.12.1-SNAPSHOT
[so.git] / bpmn / so-bpmn-infrastructure-common / pom.xml
1 <?xml version="1.0"?>
2 <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>
7     <version>1.12.1-SNAPSHOT</version>
8   </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>
21         <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>
35       <plugin>
36         <groupId>org.apache.maven.plugins</groupId>
37         <artifactId>maven-compiler-plugin</artifactId>
38         <configuration>
39           <compilerId>groovy-eclipse-compiler</compilerId>
40         </configuration>
41         <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>
50             <version>2.5.8-03</version>
51           </dependency>
52         </dependencies>
53       </plugin>
54     </plugins>
55     <pluginManagement>
56       <plugins>
57         <plugin>
58           <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>
81         <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>
116   <dependencies>
117     <dependency>
118       <groupId>org.camunda.bpm.springboot</groupId>
119       <artifactId>camunda-bpm-spring-boot-starter</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.camunda.bpm.springboot</groupId>
124       <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.apache.cxf</groupId>
129       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
130     </dependency>
131     <dependency>
132       <groupId>org.apache.cxf</groupId>
133       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
134     </dependency>
135     <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>
140     <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>
154       <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>
198
199     <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>
219
220     <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       <version>${logback-core.version}</version>
233     </dependency>
234     <dependency>
235       <groupId>org.slf4j</groupId>
236       <artifactId>slf4j-api</artifactId>
237     </dependency>
238     <dependency>
239       <groupId>org.mariadb.jdbc</groupId>
240       <artifactId>mariadb-java-client</artifactId>
241     </dependency>
242     <dependency>
243       <groupId>ch.vorburger.mariaDB4j</groupId>
244       <artifactId>mariaDB4j</artifactId>
245       <scope>test</scope>
246     </dependency>
247     <dependency>
248       <groupId>org.onap.so</groupId>
249       <artifactId>MSOCommonBPMN</artifactId>
250       <version>${project.version}</version>
251       <classifier>tests</classifier>
252       <scope>test</scope>
253     </dependency>
254     <dependency>
255       <groupId>org.camunda.bpm.springboot</groupId>
256       <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
257       <scope>test</scope>
258     </dependency>
259     <dependency>
260       <groupId>org.assertj</groupId>
261       <artifactId>assertj-core</artifactId>
262       <scope>test</scope>
263     </dependency>
264     <dependency>
265       <groupId>org.codehaus.groovy</groupId>
266       <artifactId>groovy-test</artifactId>
267       <scope>test</scope>
268     </dependency>
269     <dependency>
270       <groupId>org.camunda.bpm.extension.mockito</groupId>
271       <artifactId>camunda-bpm-mockito</artifactId>
272     </dependency>
273     <dependency>
274       <groupId>org.codehaus.groovy</groupId>
275       <artifactId>groovy-dateutil</artifactId>
276       <version>2.5.8</version>
277     </dependency>
278   </dependencies>
279 </project>