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