SO-4001: Package upgrade for the SO and so-libs
[so.git] / bpmn / MSOCommonBPMN / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
3   xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.onap.so</groupId>
7     <artifactId>bpmn</artifactId>
8     <version>1.12.1-SNAPSHOT</version>
9   </parent>
10   <artifactId>MSOCommonBPMN</artifactId>
11   <name>MSOCommonBPMN</name>
12   <packaging>jar</packaging>
13   <build>
14     <plugins>
15       <plugin>
16         <groupId>org.apache.maven.plugins</groupId>
17         <artifactId>maven-compiler-plugin</artifactId>
18         <configuration>
19           <compilerId>groovy-eclipse-compiler</compilerId>
20         </configuration>
21         <dependencies>
22           <dependency>
23             <groupId>org.codehaus.groovy</groupId>
24             <artifactId>groovy-eclipse-compiler</artifactId>
25             <version>3.6.0-03</version>
26           </dependency>
27           <dependency>
28             <groupId>org.codehaus.groovy</groupId>
29             <artifactId>groovy-eclipse-batch</artifactId>
30             <version>2.5.8-03</version>
31           </dependency>
32         </dependencies>
33       </plugin>
34       <plugin>
35         <groupId>org.apache.maven.plugins</groupId>
36         <artifactId>maven-jar-plugin</artifactId>
37         <executions>
38           <execution>
39             <goals>
40               <goal>test-jar</goal>
41             </goals>
42             <configuration>
43               <skip>false</skip>
44               <excludes>
45                 <exclude>**/validation/*</exclude>
46               </excludes>
47             </configuration>
48           </execution>
49         </executions>
50       </plugin>
51       <plugin>
52         <groupId>org.apache.cxf</groupId>
53         <artifactId>cxf-codegen-plugin</artifactId>
54         <version>2.5.2</version>
55       </plugin>
56       <plugin>
57         <groupId>org.apache.maven.plugins</groupId>
58         <artifactId>maven-surefire-plugin</artifactId>
59         <executions>
60           <execution>
61             <id>default-test</id>
62             <goals>
63               <goal>test</goal>
64             </goals>
65             <configuration>
66               <includes>
67                 <include>**/AllTestSuites.java</include>
68               </includes>
69             </configuration>
70           </execution>
71           <execution>
72             <id>non-spring-tests</id>
73             <goals>
74               <goal>test</goal>
75             </goals>
76             <configuration>
77               <includes>
78                 <include>**/NonSpringSuite.java</include>
79               </includes>
80             </configuration>
81           </execution>
82           <execution>
83             <id>groovy-tests</id>
84             <goals>
85               <goal>test</goal>
86             </goals>
87             <configuration>
88               <includes>
89                 <include>**/AllGroovyTestSuites.java</include>
90               </includes>
91             </configuration>
92           </execution>
93         </executions>
94         <configuration>
95           <parallel>suites</parallel>
96         </configuration>
97       </plugin>
98     </plugins>
99     <pluginManagement>
100       <plugins>
101         <!--This plugin's configuration is used to store Eclipse m2e settings 
102           only. It has no influence on the Maven build itself. -->
103         <plugin>
104           <groupId>org.eclipse.m2e</groupId>
105           <artifactId>lifecycle-mapping</artifactId>
106           <version>1.0.0</version>
107           <configuration>
108             <lifecycleMappingMetadata>
109               <pluginExecutions>
110                 <pluginExecution>
111                   <pluginExecutionFilter>
112                     <groupId>
113                       org.apache.maven.plugins
114                     </groupId>
115                     <artifactId>
116                       maven-antrun-plugin
117                     </artifactId>
118                     <versionRange>
119                       [1.3,)
120                     </versionRange>
121                     <goals>
122                       <goal>execute</goal>
123                     </goals>
124                   </pluginExecutionFilter>
125                   <action>
126                     <execute>
127                       <runOnIncremental>true</runOnIncremental>
128                     </execute>
129                   </action>
130                 </pluginExecution>
131               </pluginExecutions>
132             </lifecycleMappingMetadata>
133           </configuration>
134         </plugin>
135       </plugins>
136     </pluginManagement>
137   </build>
138   <dependencies>
139     <dependency>
140       <groupId>org.camunda.bpm.springboot</groupId>
141       <artifactId>camunda-bpm-spring-boot-starter</artifactId>
142       <scope>test</scope>
143     </dependency>
144     <dependency>
145       <groupId>org.springframework.cloud</groupId>
146       <artifactId>spring-cloud-contract-wiremock</artifactId>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.springframework.boot</groupId>
151       <artifactId>spring-boot-starter-test</artifactId>
152       <scope>test</scope>
153     </dependency>
154     <dependency>
155       <groupId>org.camunda.bpm.extension.mockito</groupId>
156       <artifactId>camunda-bpm-mockito</artifactId>
157       <scope>test</scope>
158     </dependency>
159     <dependency>
160       <groupId>org.camunda.connect</groupId>
161       <artifactId>camunda-connect-connectors-all</artifactId>
162     </dependency>
163     <dependency>
164       <!-- Needed for InMemoryH2Test -->
165       <groupId>com.h2database</groupId>
166       <artifactId>h2</artifactId>
167       <scope>test</scope>
168     </dependency>
169     <dependency>
170       <groupId>org.codehaus.groovy</groupId>
171       <artifactId>groovy-xml</artifactId>
172     </dependency>
173     <dependency>
174       <groupId>org.codehaus.groovy</groupId>
175       <artifactId>groovy-json</artifactId>
176     </dependency>
177     <dependency>
178       <groupId>org.codehaus.groovy</groupId>
179       <artifactId>groovy-jsr223</artifactId>
180     </dependency>
181     <dependency>
182       <groupId>org.codehaus.groovy</groupId>
183       <artifactId>groovy-test</artifactId>
184       <scope>test</scope>
185     </dependency>
186     <dependency>
187       <groupId>org.onap.so</groupId>
188       <artifactId>MSOCoreBPMN</artifactId>
189       <version>${project.version}</version>
190     </dependency>
191     <dependency>
192       <groupId>org.onap.so</groupId>
193       <artifactId>mso-catalog-db</artifactId>
194       <version>${project.version}</version>
195     </dependency>
196     <dependency>
197       <groupId>org.onap.so</groupId>
198       <artifactId>mso-requests-db</artifactId>
199       <version>${project.version}</version>
200     </dependency>
201     <dependency>
202       <groupId>org.onap.so.adapters</groupId>
203       <artifactId>mso-adapters-rest-interface</artifactId>
204       <version>${project.version}</version>
205     </dependency>
206     <dependency>
207       <groupId>commons-lang</groupId>
208       <artifactId>commons-lang</artifactId>
209       <version>2.6</version>
210     </dependency>
211     <dependency>
212       <groupId>org.onap.appc.client</groupId>
213       <artifactId>client-lib</artifactId>
214       <version>${appc.client.version}</version>
215       <exclusions>
216         <exclusion>
217           <groupId>org.mockito</groupId>
218           <artifactId>mockito-core</artifactId>
219         </exclusion>
220         <exclusion>
221           <groupId>org.powermock</groupId>
222           <artifactId>powermock-module-junit4</artifactId>
223         </exclusion>
224         <exclusion>
225           <groupId>org.powermock</groupId>
226           <artifactId>powermock-api-mockito</artifactId>
227         </exclusion>
228       </exclusions>
229     </dependency>
230     <dependency>
231       <groupId>org.onap.appc.client</groupId>
232       <artifactId>client-kit</artifactId>
233       <version>${appc.client.version}</version>
234       <exclusions>
235         <exclusion>
236           <groupId>org.mockito</groupId>
237           <artifactId>mockito-core</artifactId>
238         </exclusion>
239       </exclusions>
240     </dependency>
241     <dependency>
242       <groupId>org.glassfish.jersey.core</groupId>
243       <artifactId>jersey-client</artifactId>
244     </dependency>
245     <dependency>
246       <groupId>org.glassfish.jersey.inject</groupId>
247       <artifactId>jersey-hk2</artifactId>
248       <version>2.26</version>
249     </dependency>
250     <dependency>
251       <groupId>org.glassfish.jersey.media</groupId>
252       <artifactId>jersey-media-json-jackson</artifactId>
253     </dependency>
254     <dependency>
255       <groupId>org.springframework.boot</groupId>
256       <artifactId>spring-boot-starter-test</artifactId>
257       <scope>test</scope>
258     </dependency>
259     <dependency>
260       <groupId>uk.co.blackpepper.bowman</groupId>
261       <artifactId>bowman-client</artifactId>
262       <version>${bowman.client.version}</version>
263     </dependency>
264     <dependency>
265       <groupId>pl.pragmatists</groupId>
266       <artifactId>JUnitParams</artifactId>
267       <scope>test</scope>
268     </dependency>
269     <dependency>
270       <groupId>ch.vorburger.mariaDB4j</groupId>
271       <artifactId>mariaDB4j</artifactId>
272       <scope>test</scope>
273     </dependency>
274     <dependency>
275       <groupId>org.assertj</groupId>
276       <artifactId>assertj-core</artifactId>
277       <version>3.11.1</version>
278       <scope>test</scope>
279     </dependency>
280   </dependencies>
281 </project>