Merge "Fix skipPostInstConf for PNF"
[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.7.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
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>
51             <version>2.5.8-03</version>
52           </dependency>
53         </dependencies>
54       </plugin>
55     </plugins>
56     <pluginManagement>
57       <plugins>
58         <plugin>
59           <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>
82         <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>
117
118   <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>
129
130   <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>
146     </dependency>
147     <dependency>
148       <groupId>org.apache.cxf</groupId>
149       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
150     </dependency>
151     <dependency>
152       <groupId>org.apache.cxf</groupId>
153       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
154     </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>
169       <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>
213
214     <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>
234
235     <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>
281       <groupId>org.codehaus.groovy</groupId>
282       <artifactId>groovy-test</artifactId>
283       <scope>test</scope>
284     </dependency>
285     <dependency>
286       <groupId>org.camunda.bpm.extension.mockito</groupId>
287       <artifactId>camunda-bpm-mockito</artifactId>
288     </dependency>
289     <dependency>
290       <groupId>org.codehaus.groovy</groupId>
291       <artifactId>groovy-dateutil</artifactId>
292       <version>2.5.8</version>
293     </dependency>
294   </dependencies>
295 </project>