Catchup commits for Dublin
[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                                 </plugin>
108                         </plugins>
109                 </pluginManagement>
110                 <finalName>${project.artifactId}-${project.version}</finalName>
111         </build>
112
113         <dependencyManagement>
114                 <dependencies>
115                         <dependency>
116                                 <groupId>org.camunda.bpm</groupId>
117                                 <artifactId>camunda-bom</artifactId>
118                                 <version>${camunda.version}</version>
119                                 <scope>import</scope>
120                                 <type>pom</type>
121                         </dependency>
122                 </dependencies>
123         </dependencyManagement>
124
125         <dependencies>
126                 <dependency>
127                         <groupId>org.camunda.bpm.springboot</groupId>
128                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
129                         <version>${camunda.springboot.version}</version>
130                         <scope>test</scope>
131                 </dependency>
132                 <dependency>
133                         <groupId>org.camunda.bpm.springboot</groupId>
134                         <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
135                         <version>${camunda.springboot.version}</version>
136                         <scope>test</scope>
137                 </dependency>
138                 <dependency>
139                         <groupId>org.springframework.boot</groupId>
140                         <artifactId>spring-boot-starter-test</artifactId>
141                         <scope>test</scope>
142                 </dependency>
143                 <dependency>
144                         <groupId>org.springframework.boot</groupId>
145                         <artifactId>spring-boot-starter-web</artifactId>
146                         <scope>test</scope>
147                 </dependency>
148                 <dependency>
149                         <groupId>org.springframework.boot</groupId>
150                         <artifactId>spring-boot-starter-data-jpa</artifactId>
151                         <optional>true</optional>
152                 </dependency>
153                 <dependency>
154                         <groupId>org.apache.cxf</groupId>
155                         <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
156                         <version>${cxf.version}</version>
157                 </dependency>
158                 <dependency>
159                         <groupId>org.apache.cxf</groupId>
160                         <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
161                         <version>${cxf.version}</version>
162                 </dependency>
163                 <dependency>
164                         <groupId>org.apache.cxf</groupId>
165                         <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
166                         <version>${cxf.version}</version>
167                 </dependency>
168                 <dependency>
169                         <groupId>com.h2database</groupId>
170                         <artifactId>h2</artifactId>
171                         <scope>test</scope>
172                 </dependency>
173                 <dependency>
174                         <groupId>org.mockito</groupId>
175                         <artifactId>mockito-core</artifactId>
176                         <version>1.10.19</version>
177                         <scope>test</scope>
178                 </dependency>
179                 <dependency>
180                         <groupId>com.fasterxml.uuid</groupId>
181                         <artifactId>java-uuid-generator</artifactId>
182                 </dependency>
183                 <dependency>
184                         <groupId>org.codehaus.groovy</groupId>
185                         <artifactId>groovy-all</artifactId>
186                 </dependency>
187                 <dependency>
188                         <groupId>org.apache.commons</groupId>
189                         <artifactId>commons-lang3</artifactId>
190                         <version>3.4</version>
191                 </dependency>
192                 <dependency>
193                         <groupId>org.onap.so</groupId>
194                         <artifactId>MSOCoreBPMN</artifactId>
195                         <version>${project.version}</version>
196                 </dependency>
197                 <dependency>
198                         <groupId>org.onap.so</groupId>
199                         <artifactId>MSOCommonBPMN</artifactId>
200                         <version>${project.version}</version>
201                 </dependency>
202                 <dependency>
203                         <groupId>org.onap.so</groupId>
204                         <artifactId>MSOCoreBPMN</artifactId>
205                         <version>${project.version}</version>
206                         <classifier>tests</classifier>
207                         <scope>test</scope>
208                 </dependency>
209                 <dependency>
210                         <groupId>javax.ws.rs</groupId>
211                         <artifactId>javax.ws.rs-api</artifactId>
212                         <version>${jax.ws.rs}</version>
213                 </dependency>
214                 <dependency>
215                         <groupId>org.camunda.spin</groupId>
216                         <artifactId>camunda-spin-core</artifactId>
217                         <scope>test</scope>
218                 </dependency>
219                 <dependency>
220                         <groupId>org.camunda.spin</groupId>
221                         <artifactId>camunda-spin-dataformat-all</artifactId>
222                         <scope>test</scope>
223                 </dependency>
224                 <dependency>
225                         <artifactId>camunda-spin-dataformat-all</artifactId>
226                         <groupId>org.camunda.spin</groupId>
227                         <scope>test</scope>
228                 </dependency>
229                 <dependency>
230                         <groupId>org.camunda.bpm</groupId>
231                         <artifactId>camunda-engine-plugin-spin</artifactId>
232                 </dependency>
233
234                 <dependency>
235                         <groupId>org.camunda.bpm</groupId>
236                         <artifactId>camunda-engine-plugin-connect</artifactId>
237                         <scope>test</scope>
238                 </dependency>
239                 <dependency>
240                         <groupId>javax.annotation</groupId>
241                         <artifactId>javax.annotation-api</artifactId>
242                         <version>1.3</version>
243                 </dependency>
244                 <dependency>
245                         <groupId>org.springframework.boot</groupId>
246                         <artifactId>spring-boot-configuration-processor</artifactId>
247                         <optional>true</optional>
248                 </dependency>
249                 <dependency>
250                         <groupId>ch.qos.logback</groupId>
251                         <artifactId>logback-classic</artifactId>
252                 </dependency>
253                 <dependency>
254                         <groupId>ch.qos.logback</groupId>
255                         <artifactId>logback-core</artifactId>
256                 </dependency>
257                 <dependency>
258                         <groupId>org.slf4j</groupId>
259                         <artifactId>slf4j-api</artifactId>
260                 </dependency>
261                 <dependency>
262                         <groupId>org.mariadb.jdbc</groupId>
263                         <artifactId>mariadb-java-client</artifactId>
264                 </dependency>
265                 <dependency>
266                         <groupId>ch.vorburger.mariaDB4j</groupId>
267                         <artifactId>mariaDB4j</artifactId>
268                         <version>2.2.3</version>
269                         <scope>test</scope>
270                 </dependency>
271         </dependencies>
272 </project>