Merge "JUnit tests for MsoMulticloudUtils"
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <parent>
4                 <groupId>org.onap.so</groupId>
5                 <artifactId>bpmn</artifactId>
6                 <version>1.4.0-SNAPSHOT</version>
7         </parent>
8         <modelVersion>4.0.0</modelVersion>
9         <artifactId>so-bpmn-infrastructure-common</artifactId>
10         <packaging>jar</packaging>
11         <build>
12                 <plugins>
13                         <plugin>
14                                 <groupId>org.apache.cxf</groupId>
15                                 <artifactId>cxf-codegen-plugin</artifactId>
16                                 <version>2.5.2</version>
17                         </plugin>
18                         <plugin>
19                                 <groupId>org.apache.maven.plugins</groupId>
20                                 <artifactId>maven-eclipse-plugin</artifactId>
21                                 <version>2.8</version>
22                                 <configuration>
23                                         <additionalProjectnatures>
24                                                 <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
25                                         </additionalProjectnatures>
26                                         <sourceIncludes>
27                                                 <sourceInclude>**/*.groovy</sourceInclude>
28                                         </sourceIncludes>
29                                 </configuration>
30                         </plugin>
31                         <plugin>
32                                 <groupId>org.codehaus.gmaven</groupId>
33                                 <artifactId>gmaven-plugin</artifactId>
34                                 <version>1.5</version>
35                                 <dependencies>
36                                         <dependency>
37                                                 <groupId>org.codehaus.gmaven.runtime</groupId>
38                                                 <artifactId>gmaven-runtime-2.0</artifactId>
39                                                 <version>1.5</version>
40                                         </dependency>
41                                         <dependency>
42                                                 <groupId>org.codehaus.groovy</groupId>
43                                                 <artifactId>groovy</artifactId>
44                                                 <version>${groovy.version}</version>
45                                         </dependency>
46                                 </dependencies>
47                                 <configuration>
48                                         <debug>false</debug>
49                                         <verbose>true</verbose>
50                                         <stacktrace>true</stacktrace>
51                                         <defaultScriptExtension>.groovy</defaultScriptExtension>
52                                         <providerSelection>2.0</providerSelection>
53                                 </configuration>
54                                 <executions>
55                                         <execution>
56                                                 <goals>
57                                                         <goal>testCompile</goal>
58                                                         <goal>compile</goal>
59                                                 </goals>
60                                         </execution>
61                                 </executions>
62                         </plugin>
63                         <plugin>
64                                 <groupId>org.apache.maven.plugins</groupId>
65                                 <artifactId>maven-dependency-plugin</artifactId>
66                         </plugin>
67                         <plugin>
68                                 <artifactId>maven-failsafe-plugin</artifactId>
69                                 <version>2.6</version>
70                                 <executions>
71                                         <execution>
72                                                 <goals>
73                                                         <goal>integration-test</goal>
74                                                         <goal>verify</goal>
75                                                 </goals>
76                                         </execution>
77                                 </executions>
78                         </plugin>
79                 </plugins>
80                 <pluginManagement>
81                         <plugins>
82                                 <!--This plugin's configuration is used to store Eclipse m2e settings
83                                         only. It has no influence on the Maven build itself. -->
84                                 <plugin>
85                                         <groupId>org.eclipse.m2e</groupId>
86                                         <artifactId>lifecycle-mapping</artifactId>
87                                         <version>1.0.0</version>
88                                         <configuration>
89                                                 <lifecycleMappingMetadata>
90                                                         <pluginExecutions>
91                                                                 <pluginExecution>
92                                                                         <pluginExecutionFilter>
93                                                                                 <groupId>
94                                                                                         org.apache.maven.plugins
95                                                                                 </groupId>
96                                                                                 <artifactId>
97                                                                                         maven-antrun-plugin
98                                                                                 </artifactId>
99                                                                                 <versionRange>
100                                                                                         [1.3,)
101                                                                                 </versionRange>
102                                                                                 <goals>
103                                                                                         <goal>run</goal>
104                                                                                 </goals>
105                                                                         </pluginExecutionFilter>
106                                                                         <action>
107                                                                                 <ignore/>
108                                                                         </action>
109                                                                 </pluginExecution>
110                                                         </pluginExecutions>
111                                                 </lifecycleMappingMetadata>
112                                         </configuration>
113                                 </plugin>
114                                 <plugin>
115                                         <groupId>org.apache.maven.plugins</groupId>
116                                         <artifactId>maven-surefire-plugin</artifactId>
117                                         <executions>
118                                         <execution>
119                                                         <id>default-test</id>
120                                                         <goals>
121                                                                 <goal>test</goal>
122                                                         </goals>
123                                                         <configuration>
124                                     <includes>
125                                         <include>**/AllTestsTestSuite.java</include>
126                                     </includes>
127                                                         </configuration>
128                                                 </execution>
129                                                 <execution>
130                                                         <id>tasks-test</id>
131                                                         <goals>
132                                                                 <goal>test</goal>
133                                                         </goals>
134                                                         <configuration>
135                                     <includes>
136                                         <include>**/AllTasksTestsTestSuite.java</include>
137                                     </includes>
138                                                         </configuration>
139                                                 </execution>
140                                         </executions>
141                                         <configuration>
142                                                 <parallel>suites</parallel>
143                                         </configuration>
144                                 </plugin>
145                         </plugins>
146                 </pluginManagement>
147                 <finalName>${project.artifactId}-${project.version}</finalName>
148         </build>
149
150         <dependencyManagement>
151                 <dependencies>
152                         <dependency>
153                                 <groupId>org.camunda.bpm</groupId>
154                                 <artifactId>camunda-bom</artifactId>
155                                 <version>${camunda.version}</version>
156                                 <scope>import</scope>
157                                 <type>pom</type>
158                         </dependency>
159                 </dependencies>
160         </dependencyManagement>
161
162         <dependencies>
163                 <dependency>
164                         <groupId>org.camunda.bpm.springboot</groupId>
165                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
166                         <version>${camunda.springboot.version}</version>
167                         <scope>test</scope>
168                 </dependency>
169                 <dependency>
170                         <groupId>org.camunda.bpm.springboot</groupId>
171                         <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
172                         <version>${camunda.springboot.version}</version>
173                         <scope>test</scope>
174                 </dependency>
175                 <dependency>
176                         <groupId>org.apache.cxf</groupId>
177                         <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
178                         <version>${cxf.version}</version>
179                 </dependency>
180                 <dependency>
181                         <groupId>org.apache.cxf</groupId>
182                         <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
183                         <version>${cxf.version}</version>
184                 </dependency>
185                 <dependency>
186                         <groupId>org.apache.cxf</groupId>
187                         <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
188                         <version>${cxf.version}</version>
189                 </dependency>
190                 <dependency>
191                         <groupId>com.h2database</groupId>
192                         <artifactId>h2</artifactId>
193                         <scope>test</scope>
194                 </dependency>
195                 <dependency>
196                         <groupId>com.google.guava</groupId>
197                         <artifactId>guava</artifactId>
198                 </dependency>
199                 <dependency>
200                         <groupId>com.fasterxml.uuid</groupId>
201                         <artifactId>java-uuid-generator</artifactId>
202                 </dependency>
203                 <dependency>
204                         <groupId>org.codehaus.groovy</groupId>
205                         <artifactId>groovy-all</artifactId>
206                 </dependency>
207                 <dependency>
208                         <groupId>org.apache.commons</groupId>
209                         <artifactId>commons-lang3</artifactId>
210                 </dependency>
211                 <dependency>
212                         <groupId>org.onap.so</groupId>
213                         <artifactId>MSOCoreBPMN</artifactId>
214                         <version>${project.version}</version>
215                 </dependency>
216            <dependency>
217             <groupId>org.onap.so</groupId>
218             <artifactId>MSOCommonBPMN</artifactId>
219             <version>${project.version}</version>
220         </dependency>
221                 <dependency>
222                         <groupId>org.onap.so</groupId>
223                         <artifactId>MSOCoreBPMN</artifactId>
224                         <version>${project.version}</version>
225                         <classifier>tests</classifier>
226                         <scope>test</scope>
227                 </dependency>
228                 <dependency>
229                         <groupId>javax.ws.rs</groupId>
230                         <artifactId>javax.ws.rs-api</artifactId>
231                         <version>${jax.ws.rs}</version>
232                 </dependency>
233                 <dependency>
234                         <groupId>org.camunda.spin</groupId>
235                         <artifactId>camunda-spin-core</artifactId>
236                         <scope>test</scope>
237                 </dependency>
238                 <dependency>
239                         <groupId>org.camunda.spin</groupId>
240                         <artifactId>camunda-spin-dataformat-all</artifactId>
241                         <scope>test</scope>
242                 </dependency>
243                 <dependency>
244                         <artifactId>camunda-spin-dataformat-all</artifactId>
245                         <groupId>org.camunda.spin</groupId>
246                         <scope>test</scope>
247                 </dependency>
248                 <dependency>
249                         <groupId>org.camunda.bpm</groupId>
250                         <artifactId>camunda-engine-plugin-spin</artifactId>
251                 </dependency>
252
253                 <dependency>
254                         <groupId>org.camunda.bpm</groupId>
255                         <artifactId>camunda-engine-plugin-connect</artifactId>
256                         <scope>test</scope>
257                 </dependency>
258                 <dependency>
259                         <groupId>javax.annotation</groupId>
260                         <artifactId>javax.annotation-api</artifactId>
261                 </dependency>
262                   <dependency>
263             <groupId>org.onap.msb.java-sdk</groupId>
264             <artifactId>msb-java-sdk</artifactId>
265             <version>1.1.1</version>
266             <exclusions>
267                 <exclusion>
268                     <groupId>com.eclipsesource.jaxrs</groupId>
269                     <artifactId>jersey-all</artifactId>
270                 </exclusion>
271             </exclusions>
272         </dependency>
273
274                 <dependency>
275                         <groupId>org.springframework.boot</groupId>
276                         <artifactId>spring-boot-configuration-processor</artifactId>
277                         <optional>true</optional>
278                 </dependency>
279                 <dependency>
280                         <groupId>ch.qos.logback</groupId>
281                         <artifactId>logback-classic</artifactId>
282                 </dependency>
283                 <dependency>
284                         <groupId>ch.qos.logback</groupId>
285                         <artifactId>logback-core</artifactId>
286                 </dependency>
287                 <dependency>
288                         <groupId>org.slf4j</groupId>
289                         <artifactId>slf4j-api</artifactId>
290                 </dependency>
291                 <dependency>
292                         <groupId>org.mariadb.jdbc</groupId>
293                         <artifactId>mariadb-java-client</artifactId>
294                 </dependency>
295                 <dependency>
296             <groupId>ch.vorburger.mariaDB4j</groupId>
297             <artifactId>mariaDB4j</artifactId>
298             <version>2.2.3</version>
299             <scope>test</scope>
300         </dependency>
301         <dependency>
302                         <groupId>org.onap.so</groupId>
303                         <artifactId>MSOCommonBPMN</artifactId>
304                         <version>${project.version}</version>
305                         <classifier>tests</classifier>
306                         <scope>test</scope>
307                 </dependency>
308         <dependency>
309             <groupId>org.camunda.bpm.springboot</groupId>
310             <artifactId>camunda-bpm-spring-boot-starter-test</artifactId>
311             <version>${camunda.springboot.version}</version>
312             <scope>test</scope>
313         </dependency>
314                 <dependency>
315                         <groupId>org.assertj</groupId>
316                         <artifactId>assertj-core</artifactId>
317                         <scope>test</scope>
318                 </dependency>
319                 <dependency>
320                         <groupId>org.camunda.bpm.extension.mockito</groupId>
321                         <artifactId>camunda-bpm-mockito</artifactId>
322                 </dependency>
323         </dependencies>
324 </project>