Merge "Fixed issues in AN NSSMF for allocate flow & added timeDelay in QueryJobStatus"
[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.8.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
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       <scope>test</scope>
135     </dependency>
136     <dependency>
137       <groupId>org.camunda.bpm.springboot</groupId>
138       <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
139       <scope>test</scope>
140     </dependency>
141     <dependency>
142       <groupId>org.apache.cxf</groupId>
143       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
144     </dependency>
145     <dependency>
146       <groupId>org.apache.cxf</groupId>
147       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
148     </dependency>
149     <dependency>
150       <groupId>org.apache.cxf</groupId>
151       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
152     </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>
167       <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>
211
212     <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>
232
233     <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>
257       <version>2.3.0</version>
258       <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>
270       <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>
278       <groupId>org.codehaus.groovy</groupId>
279       <artifactId>groovy-test</artifactId>
280       <scope>test</scope>
281     </dependency>
282     <dependency>
283       <groupId>org.camunda.bpm.extension.mockito</groupId>
284       <artifactId>camunda-bpm-mockito</artifactId>
285     </dependency>
286     <dependency>
287       <groupId>org.codehaus.groovy</groupId>
288       <artifactId>groovy-dateutil</artifactId>
289       <version>2.5.8</version>
290     </dependency>
291   </dependencies>
292 </project>