Merge "JUnit tests for MsoMulticloudUtils"
[so.git] / bpmn / so-bpmn-infrastructure-flows / 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-flows</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-dependency-plugin</artifactId>
21                         </plugin>
22                         <plugin>
23                                 <artifactId>maven-failsafe-plugin</artifactId>
24                                 <version>2.6</version>
25                                 <executions>
26                                         <execution>
27                                                 <goals>
28                                                         <goal>integration-test</goal>
29                                                         <goal>verify</goal>
30                                                 </goals>
31                                         </execution>
32                                 </executions>
33                         </plugin>
34                 </plugins>
35                 <pluginManagement>
36                         <plugins>
37                                 <!--This plugin's configuration is used to store Eclipse m2e settings
38                                         only. It has no influence on the Maven build itself. -->
39                                 <plugin>
40                                         <groupId>org.eclipse.m2e</groupId>
41                                         <artifactId>lifecycle-mapping</artifactId>
42                                         <version>1.0.0</version>
43                                         <configuration>
44                                                 <lifecycleMappingMetadata>
45                                                         <pluginExecutions>
46                                                                 <pluginExecution>
47                                                                         <pluginExecutionFilter>
48                                                                                 <groupId>
49                                                                                         org.apache.maven.plugins
50                                                                                 </groupId>
51                                                                                 <artifactId>
52                                                                                         maven-antrun-plugin
53                                                                                 </artifactId>
54                                                                                 <versionRange>
55                                                                                         [1.3,)
56                                                                                 </versionRange>
57                                                                                 <goals>
58                                                                                         <goal>run</goal>
59                                                                                 </goals>
60                                                                         </pluginExecutionFilter>
61                                                                         <action>
62                                                                                 <ignore/>
63                                                                         </action>
64                                                                 </pluginExecution>
65                                                         </pluginExecutions>
66                                                 </lifecycleMappingMetadata>
67                                         </configuration>
68                                 </plugin>
69                                 <plugin>
70                                         <groupId>org.apache.maven.plugins</groupId>
71                                         <artifactId>maven-surefire-plugin</artifactId>
72                                         <executions>
73                                                 <execution>
74                                                         <id>default-test</id>
75                                                         <goals>
76                                                                 <goal>test</goal>
77                                                         </goals>
78                                                         <configuration>
79                                                                 <includes>
80                                                                         <include>**/AllTestsTestSuite.java</include>
81                                                                 </includes>
82                                                         </configuration>
83                                                 </execution>
84                                                 <execution>
85                                                         <id>tasks-test</id>
86                                                         <goals>
87                                                                 <goal>test</goal>
88                                                         </goals>
89                                                         <configuration>
90                                                                 <includes>
91                                                                         <include>**/AllTasksTestsTestSuite.java</include>
92                                                                 </includes>
93                                                         </configuration>
94                                                 </execution>
95                                                 <execution>
96                                                         <id>bpmn-test</id>
97                                                         <goals>
98                                                                 <goal>test</goal>
99                                                         </goals>
100                                                         <configuration>
101                                                                 <includes>
102                                                                         <include>**/AllBPMNTestSuites.java</include>
103                                                                 </includes>
104                                                         </configuration>
105                                                 </execution>
106                                         </executions>
107                                         <configuration>
108                                                 <parallel>suites</parallel>
109                                         </configuration>
110                                 </plugin>
111                         </plugins>
112                 </pluginManagement>
113                 <finalName>${project.artifactId}-${project.version}</finalName>
114         </build>
115
116         <dependencyManagement>
117                 <dependencies>
118                         <dependency>
119                                 <groupId>org.camunda.bpm</groupId>
120                                 <artifactId>camunda-bom</artifactId>
121                                 <version>${camunda.version}</version>
122                                 <scope>import</scope>
123                                 <type>pom</type>
124                         </dependency>
125                 </dependencies>
126         </dependencyManagement>
127
128         <dependencies>
129                 <dependency>
130                         <groupId>org.camunda.bpm.springboot</groupId>
131                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
132                         <version>${camunda.springboot.version}</version>
133                         <scope>test</scope>
134                 </dependency>
135                 <dependency>
136                         <groupId>org.camunda.bpm.springboot</groupId>
137                         <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
138                         <version>${camunda.springboot.version}</version>
139                         <scope>test</scope>
140                 </dependency>
141                 <dependency>
142                         <groupId>org.springframework.boot</groupId>
143                         <artifactId>spring-boot-starter-test</artifactId>
144                         <scope>test</scope>
145                 </dependency>
146                 <dependency>
147                         <groupId>org.springframework.boot</groupId>
148                         <artifactId>spring-boot-starter-web</artifactId>
149                         <scope>test</scope>
150                 </dependency>
151                 <dependency>
152                         <groupId>org.springframework.boot</groupId>
153                         <artifactId>spring-boot-starter-data-jpa</artifactId>
154                         <optional>true</optional>
155                 </dependency>
156                 <dependency>
157                         <groupId>org.apache.cxf</groupId>
158                         <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
159                         <version>${cxf.version}</version>
160                 </dependency>
161                 <dependency>
162                         <groupId>org.apache.cxf</groupId>
163                         <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
164                         <version>${cxf.version}</version>
165                 </dependency>
166                 <dependency>
167                         <groupId>org.apache.cxf</groupId>
168                         <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
169                         <version>${cxf.version}</version>
170                 </dependency>
171                 <dependency>
172                         <groupId>com.h2database</groupId>
173                         <artifactId>h2</artifactId>
174                         <scope>test</scope>
175                 </dependency>
176                 <dependency>
177                         <groupId>org.mockito</groupId>
178                         <artifactId>mockito-core</artifactId>
179                         <version>1.10.19</version>
180                         <scope>test</scope>
181                 </dependency>
182                 <dependency>
183                         <groupId>com.fasterxml.uuid</groupId>
184                         <artifactId>java-uuid-generator</artifactId>
185                 </dependency>
186                 <dependency>
187                         <groupId>org.codehaus.groovy</groupId>
188                         <artifactId>groovy-all</artifactId>
189                 </dependency>
190                 <dependency>
191                         <groupId>org.apache.commons</groupId>
192                         <artifactId>commons-lang3</artifactId>
193                         <version>3.4</version>
194                 </dependency>
195                 <dependency>
196                         <groupId>org.onap.so</groupId>
197                         <artifactId>MSOCoreBPMN</artifactId>
198                         <version>${project.version}</version>
199                 </dependency>
200                 <dependency>
201                         <groupId>org.onap.so</groupId>
202                         <artifactId>MSOCommonBPMN</artifactId>
203                         <version>${project.version}</version>
204                 </dependency>
205                 <dependency>
206                         <groupId>org.onap.so</groupId>
207                         <artifactId>MSOCoreBPMN</artifactId>
208                         <version>${project.version}</version>
209                         <classifier>tests</classifier>
210                         <scope>test</scope>
211                 </dependency>
212                 <dependency>
213                         <groupId>javax.ws.rs</groupId>
214                         <artifactId>javax.ws.rs-api</artifactId>
215                         <version>${jax.ws.rs}</version>
216                 </dependency>
217                 <dependency>
218                         <groupId>org.camunda.spin</groupId>
219                         <artifactId>camunda-spin-core</artifactId>
220                         <scope>test</scope>
221                 </dependency>
222                 <dependency>
223                         <groupId>org.camunda.spin</groupId>
224                         <artifactId>camunda-spin-dataformat-all</artifactId>
225                         <scope>test</scope>
226                 </dependency>
227                 <dependency>
228                         <artifactId>camunda-spin-dataformat-all</artifactId>
229                         <groupId>org.camunda.spin</groupId>
230                         <scope>test</scope>
231                 </dependency>
232                 <dependency>
233                         <groupId>org.camunda.bpm</groupId>
234                         <artifactId>camunda-engine-plugin-spin</artifactId>
235                 </dependency>
236
237                 <dependency>
238                         <groupId>org.camunda.bpm</groupId>
239                         <artifactId>camunda-engine-plugin-connect</artifactId>
240                         <scope>test</scope>
241                 </dependency>
242                 <dependency>
243                         <groupId>javax.annotation</groupId>
244                         <artifactId>javax.annotation-api</artifactId>
245                         <version>1.3</version>
246                 </dependency>
247                 <dependency>
248                         <groupId>org.springframework.boot</groupId>
249                         <artifactId>spring-boot-configuration-processor</artifactId>
250                         <optional>true</optional>
251                 </dependency>
252                 <dependency>
253                         <groupId>ch.qos.logback</groupId>
254                         <artifactId>logback-classic</artifactId>
255                 </dependency>
256                 <dependency>
257                         <groupId>ch.qos.logback</groupId>
258                         <artifactId>logback-core</artifactId>
259                 </dependency>
260                 <dependency>
261                         <groupId>org.slf4j</groupId>
262                         <artifactId>slf4j-api</artifactId>
263                 </dependency>
264                 <dependency>
265                         <groupId>org.mariadb.jdbc</groupId>
266                         <artifactId>mariadb-java-client</artifactId>
267                 </dependency>
268                 <dependency>
269                         <groupId>ch.vorburger.mariaDB4j</groupId>
270                         <artifactId>mariaDB4j</artifactId>
271                         <version>2.2.3</version>
272                         <scope>test</scope>
273                 </dependency>
274         </dependencies>
275 </project>