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