update camunda and spring to latest versions
[so.git] / adapters / mso-requests-db-adapter / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.onap.so</groupId>
6     <artifactId>adapters</artifactId>
7     <version>1.7.1-SNAPSHOT</version>
8   </parent>
9
10   <groupId>org.onap.so.adapters</groupId>
11   <artifactId>mso-requests-db-adapter</artifactId>
12   <dependencies>
13     <dependency>
14       <groupId>org.springframework.boot</groupId>
15       <artifactId>spring-boot-starter-actuator</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.springframework.boot</groupId>
19       <artifactId>spring-boot-starter-validation</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.apache.cxf</groupId>
23       <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.apache.cxf</groupId>
27       <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.apache.cxf</groupId>
31       <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.springframework.boot</groupId>
35       <artifactId>spring-boot-starter-test</artifactId>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.mariadb.jdbc</groupId>
40       <artifactId>mariadb-java-client</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.onap.so</groupId>
44       <artifactId>mso-requests-db</artifactId>
45       <version>${project.version}</version>
46     </dependency>
47     <dependency>
48       <groupId>org.onap.so</groupId>
49       <artifactId>mso-requests-db-repositories</artifactId>
50       <version>${project.version}</version>
51     </dependency>
52     <dependency>
53       <groupId>org.springframework.boot</groupId>
54       <artifactId>spring-boot-starter-data-jpa</artifactId>
55       <exclusions>
56         <exclusion>
57           <groupId>org.apache.tomcat</groupId>
58           <artifactId>tomcat-jdbc</artifactId>
59         </exclusion>
60       </exclusions>
61       <optional>true</optional>
62     </dependency>
63     <dependency>
64       <groupId>ch.vorburger.mariaDB4j</groupId>
65       <artifactId>mariaDB4j</artifactId>
66       <version>2.3.0</version>
67       <scope>test</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.springframework.boot</groupId>
71       <artifactId>spring-boot-configuration-processor</artifactId>
72       <optional>true</optional>
73     </dependency>
74     <dependency>
75       <groupId>org.flywaydb</groupId>
76       <artifactId>flyway-core</artifactId>
77       <optional>true</optional>
78     </dependency>
79     <dependency>
80       <groupId>net.javacrumbs.shedlock</groupId>
81       <artifactId>shedlock-spring</artifactId>
82     </dependency>
83     <dependency>
84       <groupId>net.javacrumbs.shedlock</groupId>
85       <artifactId>shedlock-provider-jdbc-template</artifactId>
86     </dependency>
87     <dependency>
88       <groupId>io.micrometer</groupId>
89       <artifactId>micrometer-registry-prometheus</artifactId>
90     </dependency>
91     <dependency>
92       <groupId>org.onap.so</groupId>
93       <artifactId>cxf-logging</artifactId>
94       <version>${project.version}</version>
95     </dependency>
96
97
98   </dependencies>
99   <pluginRepositories>
100     <pluginRepository>
101       <id>apache.snapshots</id>
102       <name>Maven Plugin Snapshots</name>
103       <url>http://repository.apache.org/snapshots/</url>
104       <snapshots>
105         <enabled>true</enabled>
106       </snapshots>
107     </pluginRepository>
108   </pluginRepositories>
109   <build>
110     <finalName>${project.artifactId}-${project.version}</finalName>
111     <plugins>
112       <plugin>
113         <groupId>org.apache.cxf</groupId>
114         <artifactId>cxf-java2ws-plugin</artifactId>
115         <version>3.3.3</version>
116         <dependencies>
117           <dependency>
118             <groupId>org.apache.cxf</groupId>
119             <artifactId>cxf-rt-frontend-jaxws</artifactId>
120             <version>3.3.3</version>
121           </dependency>
122           <dependency>
123             <groupId>org.apache.cxf</groupId>
124             <artifactId>cxf-rt-frontend-simple</artifactId>
125             <version>3.3.3</version>
126           </dependency>
127           <dependency>
128             <groupId>com.sun.xml.ws</groupId>
129             <artifactId>jaxws-ri</artifactId>
130             <version>2.3.0</version>
131             <type>pom</type>
132           </dependency>
133           <dependency>
134             <groupId>javax.annotation</groupId>
135             <artifactId>javax.annotation-api</artifactId>
136             <version>1.3.2</version>
137           </dependency>
138           <dependency>
139             <groupId>javax.xml.bind</groupId>
140             <artifactId>jaxb-api</artifactId>
141             <version>2.4.0-b180725.0427</version>
142           </dependency>
143           <dependency>
144             <groupId>org.glassfish.jaxb</groupId>
145             <artifactId>jaxb-runtime</artifactId>
146             <version>2.4.0-b180830.0438</version>
147           </dependency>
148         </dependencies>
149         <executions>
150           <execution>
151             <id>process-classes</id>
152             <phase>process-classes</phase>
153             <configuration>
154               <className>org.onap.so.adapters.requestsdb.MsoRequestsDbAdapter</className>
155               <genWsdl>true</genWsdl>
156               <verbose>true</verbose>
157               <ignoredDependencies>
158                 <ignoredDependency>com.sun.xml.bind:jaxb-impl</ignoredDependency>
159               </ignoredDependencies>
160             </configuration>
161             <goals>
162               <goal>java2ws</goal>
163             </goals>
164           </execution>
165         </executions>
166       </plugin>
167       <plugin>
168         <groupId>org.jacoco</groupId>
169         <artifactId>jacoco-maven-plugin</artifactId>
170       </plugin>
171       <plugin>
172         <groupId>org.springframework.boot</groupId>
173         <artifactId>spring-boot-maven-plugin</artifactId>
174         <configuration>
175           <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass>
176         </configuration>
177         <executions>
178           <execution>
179             <goals>
180               <goal>repackage</goal>
181             </goals>
182           </execution>
183         </executions>
184       </plugin>
185       <plugin>
186         <groupId>org.apache.maven.plugins</groupId>
187         <artifactId>maven-jar-plugin</artifactId>
188         <executions>
189           <execution>
190             <id>original</id>
191             <phase>package</phase>
192           </execution>
193         </executions>
194       </plugin>
195       <plugin>
196         <groupId>org.apache.maven.plugins</groupId>
197         <artifactId>maven-dependency-plugin</artifactId>
198         <executions>
199           <execution>
200             <id>extract-docker-file</id>
201             <configuration>
202               <skip>false</skip>
203             </configuration>
204           </execution>
205         </executions>
206       </plugin>
207       <plugin>
208         <groupId>io.fabric8</groupId>
209         <artifactId>docker-maven-plugin</artifactId>
210         <executions>
211           <execution>
212             <id>start</id>
213           </execution>
214         </executions>
215       </plugin>
216       <plugin>
217         <groupId>org.apache.maven.plugins</groupId>
218         <artifactId>maven-surefire-plugin</artifactId>
219         <executions>
220           <execution>
221             <id>default-test</id>
222             <goals>
223               <goal>test</goal>
224             </goals>
225             <configuration>
226               <includes>
227                 <include>**/AllTestsTestSuite.java</include>
228               </includes>
229               <parallel>suites</parallel>
230             </configuration>
231           </execution>
232         </executions>
233       </plugin>
234     </plugins>
235     <pluginManagement>
236       <plugins>
237         <!--This plugin's configuration is used to store Eclipse m2e settings 
238                                         only. It has no influence on the Maven build itself. -->
239         <plugin>
240           <groupId>org.eclipse.m2e</groupId>
241           <artifactId>lifecycle-mapping</artifactId>
242           <version>1.0.0</version>
243           <configuration>
244             <lifecycleMappingMetadata>
245               <pluginExecutions>
246                 <pluginExecution>
247                   <pluginExecutionFilter>
248                     <groupId>
249                                                                                         org.apache.cxf
250                                                                                 </groupId>
251                     <artifactId>
252                                                                                         cxf-java2ws-plugin
253                                                                                 </artifactId>
254                     <versionRange>
255                                                                                         [3.2.5,)
256                                                                                 </versionRange>
257                     <goals>
258                       <goal>java2ws</goal>
259                     </goals>
260                   </pluginExecutionFilter>
261                   <action>
262                     <ignore>
263                     </ignore>
264                   </action>
265                 </pluginExecution>
266                 <pluginExecution>
267                   <pluginExecutionFilter>
268                     <groupId>org.apache.maven.plugins</groupId>
269                     <artifactId>maven-dependency-plugin</artifactId>
270                     <versionRange>[1.0.0,)</versionRange>
271                     <goals>
272                       <goal>unpack</goal>
273                     </goals>
274                   </pluginExecutionFilter>
275                   <action>
276                     <execute />
277                   </action>
278                 </pluginExecution>
279               </pluginExecutions>
280             </lifecycleMappingMetadata>
281           </configuration>
282         </plugin>
283       </plugins>
284     </pluginManagement>
285   </build>
286 </project>