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