Merge "use encrypted auth for dmaap"
[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                 <maven.compiler.target>1.8</maven.compiler.target>
17                 <maven.compiler.source>1.8</maven.compiler.source>
18         </properties>
19
20         <build>
21                 <plugins>
22                         <plugin>
23                                 <groupId>org.apache.maven.plugins</groupId>
24                                 <artifactId>maven-compiler-plugin</artifactId>
25                                 <executions>
26                                         <execution>
27                                                 <id>test-compile</id>
28                                                 <phase>compile</phase>
29                                                 <goals>
30                                                         <goal>testCompile</goal>
31                                                 </goals>
32                                                 <configuration>
33                                                         <skip>false</skip>
34                                                 </configuration>
35                                         </execution>
36                                 </executions>
37                         </plugin>
38
39                         <plugin>
40                                 <groupId>org.apache.maven.plugins</groupId>
41                                 <artifactId>maven-jar-plugin</artifactId>
42                                 <version>3.0.2</version>
43                                 <executions>
44                                         <execution>
45                                                 <goals>
46                                                         <goal>test-jar</goal>
47                                                 </goals>
48                                                 <configuration>
49                                                         <skip>false</skip>
50                                                         <excludes>
51                                                                 <exclude>**/validation/*</exclude>
52                                                         </excludes>
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                                 <!-- Import dependency management from camunda -->
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>org.camunda.bpm.springboot</groupId>
212                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
213                         <version>${camunda.springboot.version}</version>
214                         <scope>test</scope>
215                 </dependency>
216                 <dependency>
217                         <groupId>org.springframework.cloud</groupId>
218                         <artifactId>spring-cloud-contract-wiremock</artifactId>
219                         <version>1.2.4.RELEASE</version>
220                         <scope>test</scope>
221                 </dependency>
222                 <dependency>
223                         <groupId>org.springframework.boot</groupId>
224                         <artifactId>spring-boot-starter-test</artifactId>
225                         <scope>test</scope>
226                 </dependency>
227                 <dependency>
228                         <groupId>org.camunda.bpm.extension.mockito</groupId>
229                         <artifactId>camunda-bpm-mockito</artifactId>
230                         <version>3.2.1</version>
231                         <scope>test</scope>
232                 </dependency>
233                 <dependency>
234                         <groupId>org.camunda.connect</groupId>
235                         <artifactId>camunda-connect-connectors-all</artifactId>
236                 </dependency>
237                 <dependency>
238                         <groupId>commons-beanutils</groupId>
239                         <artifactId>commons-beanutils</artifactId>
240                         <version>1.9.3</version>
241                 </dependency>
242                 <dependency>
243                         <groupId>org.springframework.boot</groupId>
244                         <artifactId>spring-boot-starter-actuator</artifactId>
245                 </dependency>
246                 <dependency>
247                         <groupId>org.springframework.boot</groupId>
248                         <artifactId>spring-boot-starter-web</artifactId>
249                 </dependency>
250                 <dependency>
251                         <!-- Needed for InMemoryH2Test -->
252                         <groupId>com.h2database</groupId>
253                         <artifactId>h2</artifactId>
254                         <scope>test</scope>
255                 </dependency>
256                 <dependency>
257                         <groupId>org.codehaus.groovy</groupId>
258                         <artifactId>groovy-all</artifactId>
259                 </dependency>
260                 <dependency>
261                         <groupId>org.onap.so</groupId>
262                         <artifactId>MSOCoreBPMN</artifactId>
263                         <version>${project.version}</version>
264                 </dependency>
265                 <dependency>
266                         <groupId>org.onap.so</groupId>
267                         <artifactId>mso-catalog-db</artifactId>
268                         <version>${project.version}</version>
269                 </dependency>
270                 <dependency>
271                         <groupId>org.onap.so</groupId>
272                         <artifactId>mso-requests-db</artifactId>
273                         <version>${project.version}</version>
274                 </dependency>
275                 <dependency>
276                         <groupId>org.onap.so</groupId>
277                         <artifactId>common</artifactId>
278                         <version>${project.version}</version>
279                 </dependency>
280                 <dependency>
281                         <groupId>org.onap.so.adapters</groupId>
282                         <artifactId>mso-adapters-rest-interface</artifactId>
283                         <version>${project.version}</version>
284                 </dependency>
285                 <dependency>
286                         <groupId>javax.servlet</groupId>
287                         <artifactId>javax.servlet-api</artifactId>
288                 </dependency>
289                 <dependency>
290                         <groupId>org.apache.httpcomponents</groupId>
291                         <artifactId>httpclient</artifactId>
292                 </dependency>
293                 <dependency>
294                         <groupId>commons-lang</groupId>
295                         <artifactId>commons-lang</artifactId>
296                         <version>2.6</version>
297                 </dependency>
298                 <dependency>
299                         <groupId>com.jayway.jsonpath</groupId>
300                         <artifactId>json-path</artifactId>
301                 </dependency>
302                 <dependency>
303                         <groupId>javax.ws.rs</groupId>
304                         <artifactId>javax.ws.rs-api</artifactId>
305                         <version>${jax.ws.rs}</version>
306                 </dependency>
307
308                 <dependency>
309                         <groupId>org.onap.appc.client</groupId>
310                         <artifactId>client-lib</artifactId>
311                         <version>1.4.4</version>
312                         <exclusions>
313                                 <exclusion>
314                                         <groupId>org.mockito</groupId>
315                                         <artifactId>mockito-core</artifactId>
316                                 </exclusion>
317                                 <exclusion>
318                                         <groupId>org.powermock</groupId>
319                                         <artifactId>powermock-module-junit4</artifactId>
320                                 </exclusion>
321                                 <exclusion>
322                                         <groupId>org.powermock</groupId>
323                                         <artifactId>powermock-api-mockito</artifactId>
324                                 </exclusion>
325                         </exclusions>
326                 </dependency>
327                 <dependency>
328                         <groupId>org.onap.appc.client</groupId>
329                         <artifactId>client-kit</artifactId>
330                         <version>1.4.4</version>
331                         <exclusions>
332                                 <exclusion>
333                                         <groupId>org.mockito</groupId>
334                                         <artifactId>mockito-core</artifactId>
335                                 </exclusion>
336                         </exclusions>
337                 </dependency>
338                 <dependency>
339                         <groupId>org.aspectj</groupId>
340                         <artifactId>aspectjrt</artifactId>
341                 </dependency>
342                 <dependency>
343                         <groupId>org.json</groupId>
344                         <artifactId>json</artifactId>
345                 </dependency>
346                 <dependency>
347                         <groupId>org.glassfish.jersey.core</groupId>
348                         <artifactId>jersey-common</artifactId>
349                 </dependency>
350                 <dependency>
351                         <groupId>org.glassfish.jersey.core</groupId>
352                         <artifactId>jersey-client</artifactId>
353                 </dependency>
354                 <dependency>
355                 <groupId>org.glassfish.jersey.inject</groupId>
356                 <artifactId>jersey-hk2</artifactId>
357                 <version>2.26</version>
358         </dependency>
359                 <dependency>
360                         <groupId>org.glassfish.jersey.media</groupId>
361                         <artifactId>jersey-media-json-jackson</artifactId>
362                 </dependency>
363                 <dependency>
364                         <groupId>org.onap.sdc.sdc-tosca</groupId>
365                         <artifactId>sdc-tosca</artifactId>
366                         <version>1.4.4</version>
367                 </dependency>
368                 <dependency>
369                         <groupId>org.onap.sdc.jtosca</groupId>
370                         <artifactId>jtosca</artifactId>
371                         <version>1.4.4</version>
372                 </dependency>
373                 <dependency>
374                         <groupId>org.springframework.boot</groupId>
375                         <artifactId>spring-boot-starter-test</artifactId>
376                         <scope>test</scope>
377                 </dependency>
378                 <dependency>
379                         <groupId>uk.co.blackpepper.bowman</groupId>
380                         <artifactId>bowman-client</artifactId>
381                         <version>0.3.0</version>
382                 </dependency>
383                 <dependency>
384                         <groupId>pl.pragmatists</groupId>
385                         <artifactId>JUnitParams</artifactId>
386                         <version>1.1.0</version>
387                 </dependency>
388                 <dependency>
389                         <groupId>ch.vorburger.mariaDB4j</groupId>
390                         <artifactId>mariaDB4j</artifactId>
391                         <version>2.2.3</version>
392                         <scope>test</scope>
393                 </dependency>
394                 <dependency>
395                         <groupId>org.springframework.cloud</groupId>
396                         <artifactId>spring-cloud-contract-wiremock</artifactId>
397                         <version>1.2.4.RELEASE</version>
398                         <scope>test</scope>
399                 </dependency>
400                 <dependency>
401                         <groupId>org.assertj</groupId>
402                         <artifactId>assertj-core</artifactId>
403                         <version>3.11.1</version>
404                         <scope>test</scope>
405                 </dependency>
406         </dependencies>
407 </project>