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