sparate beans and repositories
[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>non-spring-tests</id>
138                                                 <goals>
139                                                         <goal>test</goal>
140                                                 </goals>
141                                                 <configuration>
142                                                         <includes>
143                                                                 <include>**/NonSpringSuite.java</include>
144                                                         </includes>     
145                                                 </configuration>
146                                         </execution>
147                                         <execution>
148                                                 <id>groovy-tests</id>
149                                                 <goals>
150                                                         <goal>test</goal>
151                                                 </goals>
152                                                 <configuration>
153                                                         <includes>
154                                                                 <include>**/AllGroovyTestSuites.java</include>
155                                                         </includes>     
156                                                 </configuration>
157                                         </execution>
158                                 </executions>
159                         </plugin>
160                 </plugins>
161                 <pluginManagement>
162                         <plugins>
163                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
164                                         only. It has no influence on the Maven build itself. -->
165                                 <plugin>
166                                         <groupId>org.eclipse.m2e</groupId>
167                                         <artifactId>lifecycle-mapping</artifactId>
168                                         <version>1.0.0</version>
169                                         <configuration>
170                                                 <lifecycleMappingMetadata>
171                                                         <pluginExecutions>
172                                                                 <pluginExecution>
173                                                                         <pluginExecutionFilter>
174                                                                                 <groupId>
175                                                                                         org.apache.maven.plugins
176                                                                                 </groupId>
177                                                                                 <artifactId>
178                                                                                         maven-antrun-plugin
179                                                                                 </artifactId>
180                                                                                 <versionRange>
181                                                                                         [1.3,)
182                                                                                 </versionRange>
183                                                                                 <goals>
184                                                                                         <goal>run</goal>
185                                                                                 </goals>
186                                                                         </pluginExecutionFilter>
187                                                                         <action>
188                                                                                 <ignore></ignore>
189                                                                         </action>
190                                                                 </pluginExecution>
191                                                         </pluginExecutions>
192                                                 </lifecycleMappingMetadata>
193                                         </configuration>
194                                 </plugin>
195                         </plugins>
196                 </pluginManagement>
197         </build>
198         <dependencyManagement>
199                 <dependencies>
200                         <dependency>
201                                 <groupId>org.camunda.bpm</groupId>
202                                 <artifactId>camunda-bom</artifactId>
203                                 <version>${camunda.version}</version>
204                                 <scope>import</scope>
205                                 <type>pom</type>
206                         </dependency>
207                 </dependencies>
208         </dependencyManagement>
209         <dependencies>
210                 <dependency>
211                         <groupId>commons-beanutils</groupId>
212                         <artifactId>commons-beanutils</artifactId>
213                 </dependency>
214                 <dependency>
215                         <groupId>org.camunda.bpm</groupId>
216                         <artifactId>camunda-engine</artifactId>
217                 </dependency>
218                 <dependency>
219                         <groupId>org.camunda.bpm.springboot</groupId>
220                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
221                         <version>2.3.0-alpha2</version>
222                 </dependency>
223                 <dependency>
224                         <groupId>org.springframework.boot</groupId>
225                         <artifactId>spring-boot-starter-actuator</artifactId>
226                 </dependency>
227                 <dependency>
228                         <groupId>org.springframework.boot</groupId>
229                         <artifactId>spring-boot-starter-web</artifactId>
230                 </dependency>
231                 <dependency>
232                         <!-- Needed for InMemoryH2Test -->
233                         <groupId>com.h2database</groupId>
234                         <artifactId>h2</artifactId>
235                         <scope>test</scope>
236                 </dependency>
237                 <dependency>
238                         <groupId>com.fasterxml.uuid</groupId>
239                         <artifactId>java-uuid-generator</artifactId>
240                 </dependency>
241                 <dependency>
242                         <groupId>org.codehaus.groovy</groupId>
243                         <artifactId>groovy-all</artifactId>
244                 </dependency>
245                 <dependency>
246                         <groupId>org.onap.so</groupId>
247                         <artifactId>MSOCoreBPMN</artifactId>
248                         <version>${project.version}</version>
249                 </dependency>
250                 <dependency>
251                         <groupId>org.onap.so</groupId>
252                         <artifactId>mso-catalog-db</artifactId>
253                         <version>${project.version}</version>
254                 </dependency>
255                 <dependency>
256                         <groupId>org.onap.so</groupId>
257                         <artifactId>mso-requests-db</artifactId>                        
258                         <version>${project.version}</version>
259                 </dependency>
260                 <dependency>
261                         <groupId>org.onap.so</groupId>
262                         <artifactId>common</artifactId>
263                         <version>${project.version}</version>
264                 </dependency>
265                 <dependency>
266                         <groupId>org.onap.so</groupId>
267                         <artifactId>MSORESTClient</artifactId>
268                         <version>${project.version}</version>
269                 </dependency>
270                 <dependency>
271                         <groupId>org.onap.so.adapters</groupId>
272                         <artifactId>mso-adapters-rest-interface</artifactId>
273                         <version>${project.version}</version>
274                 </dependency>
275                 <dependency>
276                         <groupId>javax.servlet</groupId>
277                         <artifactId>javax.servlet-api</artifactId>
278                 </dependency>
279                 <dependency>
280                         <groupId>org.apache.httpcomponents</groupId>
281                         <artifactId>httpclient</artifactId>             
282                 </dependency>
283                 <dependency>
284                         <groupId>commons-lang</groupId>
285                         <artifactId>commons-lang</artifactId>
286                         <version>2.6</version>
287                 </dependency>
288                 <dependency>
289                         <groupId>com.jayway.jsonpath</groupId>
290                         <artifactId>json-path</artifactId>
291                 </dependency>
292                 <dependency>
293                         <groupId>javax.ws.rs</groupId>
294                         <artifactId>javax.ws.rs-api</artifactId>
295                         <version>${jax.ws.rs}</version>
296                 </dependency>
297
298                 <dependency>
299                         <groupId>org.onap.appc.client</groupId>
300                         <artifactId>client-lib</artifactId>
301                         <version>1.3.0</version>
302                 </dependency>
303                 <dependency>
304                         <groupId>org.onap.appc.client</groupId>
305                         <artifactId>client-kit</artifactId>
306                         <version>1.3.0</version>
307                 </dependency>
308
309                 <dependency>
310                         <groupId>org.aspectj</groupId>
311                         <artifactId>aspectjrt</artifactId>
312                 </dependency>
313
314                 <dependency>
315                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
316                         <artifactId>jackson-jaxrs-base</artifactId>
317                 </dependency>
318                 <dependency>
319                         <groupId>org.json</groupId>
320                         <artifactId>json</artifactId>
321                 </dependency>
322                 <dependency>
323                         <groupId>org.glassfish.jersey.core</groupId>
324                         <artifactId>jersey-client</artifactId>
325                 </dependency>
326                 <dependency>
327                         <groupId>org.glassfish.jersey.media</groupId>
328                         <artifactId>jersey-media-json-jackson</artifactId>
329                 </dependency>
330                 <dependency>
331                         <groupId>org.onap.sdc.sdc-tosca</groupId>
332                         <artifactId>sdc-tosca</artifactId>
333                         <version>1.4.1</version>                        
334                 </dependency>
335                 <dependency>
336                         <groupId>org.onap.sdc.jtosca</groupId>
337                         <artifactId>jtosca</artifactId>
338                         <version>1.4.1</version>
339                 </dependency>
340                 <dependency>
341                         <groupId>org.springframework.boot</groupId>
342                         <artifactId>spring-boot-starter-test</artifactId>
343                         <scope>test</scope>
344                 </dependency>
345                 <dependency>
346                         <groupId>uk.co.blackpepper.bowman</groupId>
347                         <artifactId>bowman-client</artifactId>
348                         <version>0.3.0</version>
349                 </dependency>
350                 <dependency>
351                         <groupId>pl.pragmatists</groupId>
352                         <artifactId>JUnitParams</artifactId>
353                         <version>1.1.0</version>
354                 </dependency>
355                 <dependency>
356                         <groupId>ch.vorburger.mariaDB4j</groupId>
357                         <artifactId>mariaDB4j</artifactId>
358                         <version>2.2.3</version>
359                         <scope>test</scope>
360                 </dependency>
361                 <dependency>
362                         <groupId>org.springframework.cloud</groupId>
363                         <artifactId>spring-cloud-contract-wiremock</artifactId>
364                         <version>1.2.4.RELEASE</version>
365                         <scope>test</scope>
366                 </dependency>
367         </dependencies>
368 </project>