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