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