6669895ef1941cf4b63b9ec52b99e3921c4cfbe2
[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.3.0-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-web</artifactId>
20                 </dependency>
21                 <dependency>
22                         <groupId>org.springframework.boot</groupId>
23                         <artifactId>spring-boot-starter-jdbc</artifactId>
24                         <exclusions>
25                                 <exclusion>
26                                         <groupId>org.apache.tomcat</groupId>
27                                         <artifactId>tomcat-jdbc</artifactId>
28                                 </exclusion>
29                         </exclusions>
30                 </dependency>
31                 <dependency>
32                         <groupId>org.apache.commons</groupId>
33                         <artifactId>commons-dbcp2</artifactId>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.apache.cxf</groupId>
37                         <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
38                         <version>${cxf.version}</version>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.apache.cxf</groupId>
42                         <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
43                         <version>${cxf.version}</version>
44                 </dependency>
45                 <dependency>
46                         <groupId>org.apache.cxf</groupId>
47                         <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
48                         <version>${cxf.version}</version>
49                 </dependency>
50                 <dependency>
51                         <groupId>org.springframework.boot</groupId>
52                         <artifactId>spring-boot-starter-test</artifactId>
53                         <scope>test</scope>
54                 </dependency>
55                 <dependency>
56                         <groupId>com.h2database</groupId>
57                         <artifactId>h2</artifactId>
58                         <scope>test</scope>
59                 </dependency>
60                 <dependency>
61                         <groupId>org.mariadb.jdbc</groupId>
62                         <artifactId>mariadb-java-client</artifactId>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.onap.so</groupId>
66                         <artifactId>mso-requests-db</artifactId>
67                         <version>${project.version}</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>org.springframework.boot</groupId>
71                         <artifactId>spring-boot-starter-data-jpa</artifactId>
72                         <optional>true</optional>
73                 </dependency>
74                 <dependency>
75                         <groupId>ch.vorburger.mariaDB4j</groupId>
76                         <artifactId>mariaDB4j</artifactId>
77                         <version>2.2.3</version>
78                         <scope>test</scope>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.springframework.boot</groupId>
82                         <artifactId>spring-boot-configuration-processor</artifactId>
83                         <optional>true</optional>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.flywaydb</groupId>
87                         <artifactId>flyway-core</artifactId>
88                         <optional>true</optional>
89                 </dependency>
90                 <dependency>
91                         <groupId>net.javacrumbs.shedlock</groupId>
92                         <artifactId>shedlock-spring</artifactId>
93                 </dependency>
94                 <dependency>
95                         <groupId>net.javacrumbs.shedlock</groupId>
96                         <artifactId>shedlock-provider-jdbc-template</artifactId>
97                 </dependency>
98                 <dependency>
99                         <groupId>io.micrometer</groupId>
100                         <artifactId>micrometer-spring-legacy</artifactId>
101                         <version>1.0.5</version>
102                 </dependency>
103                 <dependency>
104                         <groupId>io.micrometer</groupId>
105                         <artifactId>micrometer-registry-prometheus</artifactId>
106                         <version>1.0.5</version>
107                 </dependency>
108                 <dependency>
109                         <groupId>org.springframework.boot</groupId>
110                         <artifactId>spring-boot-starter-data-rest</artifactId>
111                 </dependency>
112                 <dependency>
113                         <groupId>org.onap.so</groupId>
114                         <artifactId>cxf-logging</artifactId>
115                         <version>${project.version}</version>
116                 </dependency>
117         </dependencies>
118
119         <build>
120                 <finalName>${project.artifactId}-${project.version}</finalName>
121                 <plugins>
122                         <plugin>
123                                 <groupId>org.apache.cxf</groupId>
124                                 <artifactId>cxf-java2ws-plugin</artifactId>
125                                 <version>${cxf.version}</version>
126                                 <dependencies>
127                                         <dependency>
128                                                 <groupId>org.apache.cxf</groupId>
129                                                 <artifactId>cxf-rt-frontend-jaxws</artifactId>
130                                                 <version>${cxf.version}</version>
131                                         </dependency>
132                                         <dependency>
133                                                 <groupId>org.apache.cxf</groupId>
134                                                 <artifactId>cxf-rt-frontend-simple</artifactId>
135                                                 <version>${cxf.version}</version>
136                                         </dependency>
137                                 </dependencies>
138                                 <executions>
139                                         <execution>
140                                                 <id>process-classes</id>
141                                                 <phase>process-classes</phase>
142                                                 <configuration>
143                                                         <className>org.onap.so.adapters.requestsdb.MsoRequestsDbAdapter</className>
144                                                         <genWsdl>true</genWsdl>
145                                                         <verbose>true</verbose>
146                                                 </configuration>
147                                                 <goals>
148                                                         <goal>java2ws</goal>
149                                                 </goals>
150                                         </execution>
151                                 </executions>
152                         </plugin>
153                         <plugin>
154                                 <groupId>org.jacoco</groupId>
155                                 <artifactId>jacoco-maven-plugin</artifactId>
156                         </plugin>
157                         <plugin>
158                                 <groupId>org.springframework.boot</groupId>
159                                 <artifactId>spring-boot-maven-plugin</artifactId>
160                                 <version>${springboot.version}</version>
161                                 <configuration>
162                                         <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass>
163                                 </configuration>
164                                 <executions>
165                                         <execution>
166                                                 <goals>
167                                                         <goal>repackage</goal>
168                                                 </goals>
169                                         </execution>
170                                 </executions>
171                         </plugin>
172                         <plugin>
173                                 <groupId>org.apache.maven.plugins</groupId>
174                                 <artifactId>maven-jar-plugin</artifactId>
175                                 <executions>
176                                         <execution>
177                                                 <id>original</id>
178                                         </execution>
179                                 </executions>
180                         </plugin>
181                         <plugin>
182                                 <groupId>org.apache.maven.plugins</groupId>
183                                 <artifactId>maven-dependency-plugin</artifactId>
184                                 <executions>
185                                         <execution>
186                                                 <id>extract-docker-file</id>
187                                         </execution>
188                                 </executions>
189                         </plugin>
190                         <plugin>
191                                 <groupId>io.fabric8</groupId>
192                                 <artifactId>fabric8-maven-plugin</artifactId>
193                                 <executions>
194                                         <execution>
195                                                 <id>start</id>
196                                         </execution>
197                                 </executions>
198                         </plugin>
199                 </plugins>
200                 <pluginManagement>
201                         <plugins>
202                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
203                                         only. It has no influence on the Maven build itself. -->
204                                 <plugin>
205                                         <groupId>org.eclipse.m2e</groupId>
206                                         <artifactId>lifecycle-mapping</artifactId>
207                                         <version>1.0.0</version>
208                                         <configuration>
209                                                 <lifecycleMappingMetadata>
210                                                         <pluginExecutions>
211                                                                 <pluginExecution>
212                                                                         <pluginExecutionFilter>
213                                                                                 <groupId>
214                                                                                         org.apache.cxf
215                                                                                 </groupId>
216                                                                                 <artifactId>
217                                                                                         cxf-java2ws-plugin
218                                                                                 </artifactId>
219                                                                                 <versionRange>
220                                                                                         [3.2.5,)
221                                                                                 </versionRange>
222                                                                                 <goals>
223                                                                                         <goal>java2ws</goal>
224                                                                                 </goals>
225                                                                         </pluginExecutionFilter>
226                                                                         <action>
227                                                                                 <ignore></ignore>
228                                                                         </action>
229                                                                 </pluginExecution>
230                                                         </pluginExecutions>
231                                                 </lifecycleMappingMetadata>
232                                         </configuration>
233                                 </plugin>
234                         </plugins>
235                 </pluginManagement>
236         </build>
237 </project>