Containerization feature of SO
[so.git] / bpmn / MSOCommonBPMN / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         <modelVersion>4.0.0</modelVersion>
6         <parent>
7                 <groupId>org.onap.so</groupId>
8                 <artifactId>bpmn</artifactId>
9                 <version>1.3.0-SNAPSHOT</version>
10         </parent>
11         <artifactId>MSOCommonBPMN</artifactId>
12         <name>MSOCommonBPMN</name>
13         <packaging>jar</packaging>
14
15         <properties>
16                 <camunda.version>7.8.0</camunda.version>
17
18                 <httpclient.version>4.5.5</httpclient.version>
19                 <jax.ws.rs>2.0.1</jax.ws.rs>
20                 <jackson.version>1.1.1</jackson.version>
21                 <maven.compiler.target>1.8</maven.compiler.target>
22                 <maven.compiler.source>1.8</maven.compiler.source>
23         </properties>
24
25
26         <build>
27                 <plugins>
28                         <plugin>
29                                 <groupId>org.apache.maven.plugins</groupId>
30                                 <artifactId>maven-compiler-plugin</artifactId>
31                                 <executions>
32                                         <execution>
33                                                 <id>test-compile</id>
34                                                 <phase>compile</phase>
35                                                 <goals>
36                                                         <goal>testCompile</goal>
37                                                 </goals>
38                                                 <configuration>
39                                                         <skip>false</skip>
40                                                 </configuration>
41                                         </execution>
42                                 </executions>
43                         </plugin>
44
45                         <plugin>
46                                 <groupId>org.apache.maven.plugins</groupId>
47                                 <artifactId>maven-jar-plugin</artifactId>
48                                 <version>3.0.2</version>
49                                 <executions>
50                                         <execution>
51                                                 <goals>
52                                                         <goal>test-jar</goal>
53                                                 </goals>
54                                                 <configuration>
55                                                         <skip>false</skip>
56                                                 </configuration>
57                                         </execution>
58                                 </executions>
59                         </plugin>
60                         <plugin>
61                                 <groupId>org.apache.cxf</groupId>
62                                 <artifactId>cxf-codegen-plugin</artifactId>
63                                 <version>2.5.2</version>
64                         </plugin>
65                         <plugin>
66                                 <groupId>org.apache.maven.plugins</groupId>
67                                 <artifactId>maven-eclipse-plugin</artifactId>
68                                 <version>2.8</version>
69                                 <configuration>
70                                         <additionalProjectnatures>
71                                                 <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
72                                         </additionalProjectnatures>
73                                         <sourceIncludes>
74                                                 <sourceInclude>**/*.groovy</sourceInclude>
75                                         </sourceIncludes>
76                                 </configuration>
77                         </plugin>
78                         <plugin>
79                                 <artifactId>maven-antrun-plugin</artifactId>
80                                 <executions>
81                                         <execution>
82                                                 <id>compile</id>
83                                                 <phase>compile</phase>
84                                                 <configuration>
85                                                         <tasks>
86                                                                 <mkdir dir="${basedir}/src/main/groovy" />
87                                                                 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc">
88                                                                         <classpath refid="maven.compile.classpath" />
89                                                                 </taskdef>
90                                                                 <mkdir dir="${project.build.outputDirectory}" />
91                                                                 <groovyc destdir="${project.build.outputDirectory}"
92                                                                         srcdir="${basedir}/src/main/groovy/" listfiles="true">
93                                                                         <classpath refid="maven.compile.classpath" />
94                                                                 </groovyc>
95                                                         </tasks>
96                                                 </configuration>
97                                                 <goals>
98                                                         <goal>run</goal>
99                                                 </goals>
100                                         </execution>
101                                         <execution>
102                                                 <id>test-compile</id>
103                                                 <phase>test-compile</phase>
104                                                 <configuration>
105                                                         <tasks>
106                                                                 <mkdir dir="${basedir}/src/test/groovy" />
107                                                                 <taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc">
108                                                                         <classpath refid="maven.test.classpath" />
109                                                                 </taskdef>
110                                                                 <mkdir dir="${project.build.testOutputDirectory}" />
111                                                                 <groovyc destdir="${project.build.testOutputDirectory}"
112                                                                         srcdir="${basedir}/src/test/groovy/" listfiles="true">
113                                                                         <classpath refid="maven.test.classpath" />
114                                                                 </groovyc>
115                                                         </tasks>
116                                                 </configuration>
117                                                 <goals>
118                                                         <goal>run</goal>
119                                                 </goals>
120                                         </execution>
121                                 </executions>
122                         </plugin>
123                         <plugin>
124                                 <groupId>org.apache.maven.plugins</groupId>
125                                 <artifactId>maven-surefire-plugin</artifactId>
126                                 <executions>
127                                         <execution>
128                                                 <id>default-test</id>
129                                                 <goals>
130                                                         <goal>test</goal>
131                                                 </goals>
132                                                 <configuration>
133                                                         <includes>
134                                                                 <include>**/AllTestSuites.java</include>
135                                                         </includes>     
136                                                 </configuration>
137                                         </execution>
138                                         <execution>
139                                                 <id>groovy-tests</id>
140                                                 <goals>
141                                                         <goal>test</goal>
142                                                 </goals>
143                                                 <configuration>
144                                                         <includes>
145                                                                 <include>**/AllGroovyTestSuites.java</include>
146                                                         </includes>     
147                                                 </configuration>
148                                         </execution>
149                                 </executions>
150                         </plugin>
151                 </plugins>
152                 <pluginManagement>
153                         <plugins>
154                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
155                                         only. It has no influence on the Maven build itself. -->
156                                 <plugin>
157                                         <groupId>org.eclipse.m2e</groupId>
158                                         <artifactId>lifecycle-mapping</artifactId>
159                                         <version>1.0.0</version>
160                                         <configuration>
161                                                 <lifecycleMappingMetadata>
162                                                         <pluginExecutions>
163                                                                 <pluginExecution>
164                                                                         <pluginExecutionFilter>
165                                                                                 <groupId>
166                                                                                         org.apache.maven.plugins
167                                                                                 </groupId>
168                                                                                 <artifactId>
169                                                                                         maven-antrun-plugin
170                                                                                 </artifactId>
171                                                                                 <versionRange>
172                                                                                         [1.3,)
173                                                                                 </versionRange>
174                                                                                 <goals>
175                                                                                         <goal>run</goal>
176                                                                                 </goals>
177                                                                         </pluginExecutionFilter>
178                                                                         <action>
179                                                                                 <ignore></ignore>
180                                                                         </action>
181                                                                 </pluginExecution>
182                                                         </pluginExecutions>
183                                                 </lifecycleMappingMetadata>
184                                         </configuration>
185                                 </plugin>
186                         </plugins>
187                 </pluginManagement>
188         </build>
189         <dependencyManagement>
190                 <dependencies>
191                         <dependency>
192                                 <groupId>org.camunda.bpm</groupId>
193                                 <artifactId>camunda-bom</artifactId>
194                                 <version>${camunda.version}</version>
195                                 <scope>import</scope>
196                                 <type>pom</type>
197                         </dependency>
198                 </dependencies>
199         </dependencyManagement>
200         <dependencies>
201                 <dependency>
202                         <groupId>commons-beanutils</groupId>
203                         <artifactId>commons-beanutils</artifactId>
204                 </dependency>
205                 <dependency>
206                         <groupId>org.camunda.bpm</groupId>
207                         <artifactId>camunda-engine</artifactId>
208                 </dependency>
209                 <dependency>
210                         <groupId>org.camunda.bpm.springboot</groupId>
211                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
212                         <version>2.3.0-alpha2</version>
213                 </dependency>
214                 <dependency>
215                         <groupId>org.springframework.boot</groupId>
216                         <artifactId>spring-boot-starter-actuator</artifactId>
217                 </dependency>
218                 <dependency>
219                         <groupId>org.springframework.boot</groupId>
220                         <artifactId>spring-boot-starter-web</artifactId>
221                 </dependency>
222
223
224                 <dependency>
225                         <!-- Needed for InMemoryH2Test -->
226                         <groupId>com.h2database</groupId>
227                         <artifactId>h2</artifactId>
228                         <scope>test</scope>
229                 </dependency>
230
231                 <dependency>
232                         <groupId>com.fasterxml.uuid</groupId>
233                         <artifactId>java-uuid-generator</artifactId>
234                 </dependency>
235                 <dependency>
236                         <groupId>org.codehaus.groovy</groupId>
237                         <artifactId>groovy-all</artifactId>
238                 </dependency>
239                 <dependency>
240                         <groupId>org.onap.so</groupId>
241                         <artifactId>MSOCoreBPMN</artifactId>
242                         <version>${project.version}</version>
243                 </dependency>
244                 <dependency>
245                         <groupId>org.onap.so</groupId>
246                         <artifactId>mso-catalog-db</artifactId>
247                         <version>${project.version}</version>
248                 </dependency>
249                 <dependency>
250                         <groupId>org.onap.so</groupId>
251                         <artifactId>mso-requests-db</artifactId>
252                         <version>${project.version}</version>
253                 </dependency>
254                 <dependency>
255                         <groupId>org.onap.so</groupId>
256                         <artifactId>common</artifactId>
257                         <version>${project.version}</version>
258                 </dependency>
259                 <dependency>
260                         <groupId>org.onap.so</groupId>
261                         <artifactId>MSORESTClient</artifactId>
262                         <version>${project.version}</version>
263                 </dependency>
264                 <dependency>
265                         <groupId>org.onap.so.adapters</groupId>
266                         <artifactId>mso-adapters-rest-interface</artifactId>
267                         <version>${project.version}</version>
268                 </dependency>
269                 <dependency>
270                         <groupId>javax.servlet</groupId>
271                         <artifactId>javax.servlet-api</artifactId>
272                 </dependency>
273                 <dependency>
274                         <groupId>org.apache.httpcomponents</groupId>
275                         <artifactId>httpclient</artifactId>             
276                 </dependency>
277                 <dependency>
278                         <groupId>commons-lang</groupId>
279                         <artifactId>commons-lang</artifactId>
280                         <version>2.6</version>
281                 </dependency>
282                 <dependency>
283                         <groupId>com.jayway.jsonpath</groupId>
284                         <artifactId>json-path</artifactId>
285                 </dependency>
286                 <dependency>
287                         <groupId>javax.ws.rs</groupId>
288                         <artifactId>javax.ws.rs-api</artifactId>
289                         <version>${jax.ws.rs}</version>
290                 </dependency>
291
292                 <dependency>
293                         <groupId>org.onap.appc.client</groupId>
294                         <artifactId>client-lib</artifactId>
295                         <version>1.3.0</version>
296                 </dependency>
297                 <dependency>
298                         <groupId>org.onap.appc.client</groupId>
299                         <artifactId>client-kit</artifactId>
300                         <version>1.3.0</version>
301                 </dependency>
302
303                 <dependency>
304                         <groupId>org.aspectj</groupId>
305                         <artifactId>aspectjrt</artifactId>
306                 </dependency>
307
308                 <dependency>
309                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
310                         <artifactId>jackson-jaxrs-base</artifactId>
311                 </dependency>
312                 <dependency>
313                         <groupId>org.json</groupId>
314                         <artifactId>json</artifactId>
315                 </dependency>
316                 <dependency>
317                         <groupId>org.glassfish.jersey.core</groupId>
318                         <artifactId>jersey-client</artifactId>
319                 </dependency>
320                 <dependency>
321                         <groupId>org.glassfish.jersey.media</groupId>
322                         <artifactId>jersey-media-json-jackson</artifactId>
323                 </dependency>
324                 <dependency>
325                         <groupId>org.onap.sdc.sdc-tosca</groupId>
326                         <artifactId>sdc-tosca</artifactId>
327                         <version>1.3.4-SNAPSHOT</version>
328                         <!-- sdc-tosca:1.3.3 depends on jtosca:1.3.4-SNAPSHOT, which must be excluded, 
329                                 and the release version of jtosca must be pulled in using an additional dependency, 
330                                 below -->
331                         <exclusions>
332                                 <exclusion>
333                                         <groupId>org.onap.sdc.jtosca</groupId>
334                                         <artifactId>jtosca</artifactId>
335                                 </exclusion>
336                         </exclusions>
337                 </dependency>
338                 <dependency>
339                         <groupId>org.onap.sdc.jtosca</groupId>
340                         <artifactId>jtosca</artifactId>
341                         <version>1.3.4-SNAPSHOT</version>
342                 </dependency>
343                 <dependency>
344                         <groupId>org.springframework.boot</groupId>
345                         <artifactId>spring-boot-starter-test</artifactId>
346                         <scope>test</scope>
347                 </dependency>
348                 <dependency>
349                         <groupId>uk.co.blackpepper.bowman</groupId>
350                         <artifactId>bowman-client</artifactId>
351                         <version>0.3.0</version>
352                 </dependency>
353                 <dependency>
354                         <groupId>pl.pragmatists</groupId>
355                         <artifactId>JUnitParams</artifactId>
356                         <version>1.1.0</version>
357                 </dependency>
358                 <dependency>
359                         <groupId>ch.vorburger.mariaDB4j</groupId>
360                         <artifactId>mariaDB4j</artifactId>
361                         <version>2.2.3</version>
362                         <scope>test</scope>
363                 </dependency>
364                 <dependency>
365                         <groupId>org.springframework.cloud</groupId>
366                         <artifactId>spring-cloud-contract-wiremock</artifactId>
367                         <version>1.2.4.RELEASE</version>
368                         <scope>test</scope>
369                 </dependency>
370         </dependencies>
371 </project>