Bump version to 1.13.0-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.13.0-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.fasterxml.uuid</groupId>
147       <artifactId>java-uuid-generator</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>org.apache.commons</groupId>
151       <artifactId>commons-lang3</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>org.onap.so</groupId>
155       <artifactId>MSOCoreBPMN</artifactId>
156       <version>${project.version}</version>
157     </dependency>
158     <dependency>
159       <groupId>org.onap.so</groupId>
160       <artifactId>MSOCommonBPMN</artifactId>
161       <version>${project.version}</version>
162     </dependency>
163     <dependency>
164       <groupId>org.onap.so</groupId>
165       <artifactId>MSOCoreBPMN</artifactId>
166       <version>${project.version}</version>
167       <classifier>tests</classifier>
168       <scope>test</scope>
169     </dependency>
170     <dependency>
171       <groupId>javax.ws.rs</groupId>
172       <artifactId>javax.ws.rs-api</artifactId>
173       <version>${jax.ws.rs}</version>
174     </dependency>
175     <dependency>
176       <groupId>org.camunda.spin</groupId>
177       <artifactId>camunda-spin-core</artifactId>
178       <scope>test</scope>
179     </dependency>
180     <dependency>
181       <groupId>org.camunda.spin</groupId>
182       <artifactId>camunda-spin-dataformat-all</artifactId>
183       <scope>test</scope>
184     </dependency>
185     <dependency>
186       <artifactId>camunda-spin-dataformat-all</artifactId>
187       <groupId>org.camunda.spin</groupId>
188       <scope>test</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.camunda.bpm</groupId>
192       <artifactId>camunda-engine-plugin-spin</artifactId>
193     </dependency>
194
195     <dependency>
196       <groupId>org.camunda.bpm</groupId>
197       <artifactId>camunda-engine-plugin-connect</artifactId>
198       <scope>test</scope>
199     </dependency>
200     <dependency>
201       <groupId>javax.annotation</groupId>
202       <artifactId>javax.annotation-api</artifactId>
203     </dependency>
204     <dependency>
205       <groupId>org.onap.msb.java-sdk</groupId>
206       <artifactId>msb-java-sdk</artifactId>
207       <version>1.1.1</version>
208       <exclusions>
209         <exclusion>
210           <groupId>com.eclipsesource.jaxrs</groupId>
211           <artifactId>jersey-all</artifactId>
212         </exclusion>
213       </exclusions>
214     </dependency>
215
216     <dependency>
217       <groupId>org.springframework.boot</groupId>
218       <artifactId>spring-boot-configuration-processor</artifactId>
219       <optional>true</optional>
220     </dependency>
221     <dependency>
222       <groupId>ch.qos.logback</groupId>
223       <artifactId>logback-classic</artifactId>
224     </dependency>
225     <dependency>
226       <groupId>ch.qos.logback</groupId>
227       <artifactId>logback-core</artifactId>
228       <version>${logback-core.version}</version>
229     </dependency>
230     <dependency>
231       <groupId>org.slf4j</groupId>
232       <artifactId>slf4j-api</artifactId>
233     </dependency>
234     <dependency>
235       <groupId>org.mariadb.jdbc</groupId>
236       <artifactId>mariadb-java-client</artifactId>
237     </dependency>
238     <dependency>
239       <groupId>ch.vorburger.mariaDB4j</groupId>
240       <artifactId>mariaDB4j</artifactId>
241       <scope>test</scope>
242     </dependency>
243     <dependency>
244       <groupId>org.onap.so</groupId>
245       <artifactId>MSOCommonBPMN</artifactId>
246       <version>${project.version}</version>
247       <classifier>tests</classifier>
248       <scope>test</scope>
249     </dependency>
250     <dependency>
251       <groupId>org.camunda.bpm.springboot</groupId>
252       <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
253       <scope>test</scope>
254     </dependency>
255     <dependency>
256       <groupId>org.assertj</groupId>
257       <artifactId>assertj-core</artifactId>
258       <scope>test</scope>
259     </dependency>
260     <dependency>
261       <groupId>org.codehaus.groovy</groupId>
262       <artifactId>groovy-test</artifactId>
263       <scope>test</scope>
264     </dependency>
265     <dependency>
266       <groupId>org.camunda.bpm.extension.mockito</groupId>
267       <artifactId>camunda-bpm-mockito</artifactId>
268     </dependency>
269     <dependency>
270       <groupId>org.codehaus.groovy</groupId>
271       <artifactId>groovy-dateutil</artifactId>
272       <version>2.5.8</version>
273     </dependency>
274   </dependencies>
275 </project>