Client Logging
[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.onap.so</groupId>
110                         <artifactId>cxf-logging</artifactId>
111                         <version>${project.version}</version>
112                 </dependency>
113         </dependencies>
114
115         <build>
116                 <finalName>${project.artifactId}-${project.version}</finalName>
117                 <plugins>
118                         <plugin>
119                                 <groupId>org.apache.cxf</groupId>
120                                 <artifactId>cxf-java2ws-plugin</artifactId>
121                                 <version>${cxf.version}</version>
122                                 <dependencies>
123                                         <dependency>
124                                                 <groupId>org.apache.cxf</groupId>
125                                                 <artifactId>cxf-rt-frontend-jaxws</artifactId>
126                                                 <version>${cxf.version}</version>
127                                         </dependency>
128                                         <dependency>
129                                                 <groupId>org.apache.cxf</groupId>
130                                                 <artifactId>cxf-rt-frontend-simple</artifactId>
131                                                 <version>${cxf.version}</version>
132                                         </dependency>
133                                 </dependencies>
134                                 <executions>
135                                         <execution>
136                                                 <id>process-classes</id>
137                                                 <phase>process-classes</phase>
138                                                 <configuration>
139                                                         <className>org.onap.so.adapters.requestsdb.MsoRequestsDbAdapter</className>
140                                                         <genWsdl>true</genWsdl>
141                                                         <verbose>true</verbose>
142                                                 </configuration>
143                                                 <goals>
144                                                         <goal>java2ws</goal>
145                                                 </goals>
146                                         </execution>
147                                 </executions>
148                         </plugin>
149                         <plugin>
150                                 <groupId>org.jacoco</groupId>
151                                 <artifactId>jacoco-maven-plugin</artifactId>
152                         </plugin>
153                         <plugin>
154                                 <groupId>org.springframework.boot</groupId>
155                                 <artifactId>spring-boot-maven-plugin</artifactId>
156                                 <version>${springboot.version}</version>
157                                 <configuration>
158                                         <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass>
159                                 </configuration>
160                                 <executions>
161                                         <execution>
162                                                 <goals>
163                                                         <goal>repackage</goal>
164                                                 </goals>
165                                         </execution>
166                                 </executions>
167                         </plugin>
168                         <plugin>
169                                 <groupId>org.apache.maven.plugins</groupId>
170                                 <artifactId>maven-jar-plugin</artifactId>
171                                 <executions>
172                                         <execution>
173                                                 <id>original</id>
174                                         </execution>
175                                 </executions>
176                         </plugin>
177                         <plugin>
178                                 <groupId>org.apache.maven.plugins</groupId>
179                                 <artifactId>maven-dependency-plugin</artifactId>
180                                 <executions>
181                                         <execution>
182                                                 <id>extract-docker-file</id>
183                                         </execution>
184                                 </executions>
185                         </plugin>
186                         <plugin>
187                                 <groupId>io.fabric8</groupId>
188                                 <artifactId>fabric8-maven-plugin</artifactId>
189                                 <executions>
190                                         <execution>
191                                                 <id>start</id>
192                                         </execution>
193                                 </executions>
194                         </plugin>
195                 </plugins>
196                 <pluginManagement>
197                         <plugins>
198                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
199                                         only. It has no influence on the Maven build itself. -->
200                                 <plugin>
201                                         <groupId>org.eclipse.m2e</groupId>
202                                         <artifactId>lifecycle-mapping</artifactId>
203                                         <version>1.0.0</version>
204                                         <configuration>
205                                                 <lifecycleMappingMetadata>
206                                                         <pluginExecutions>
207                                                                 <pluginExecution>
208                                                                         <pluginExecutionFilter>
209                                                                                 <groupId>
210                                                                                         org.apache.cxf
211                                                                                 </groupId>
212                                                                                 <artifactId>
213                                                                                         cxf-java2ws-plugin
214                                                                                 </artifactId>
215                                                                                 <versionRange>
216                                                                                         [3.2.5,)
217                                                                                 </versionRange>
218                                                                                 <goals>
219                                                                                         <goal>java2ws</goal>
220                                                                                 </goals>
221                                                                         </pluginExecutionFilter>
222                                                                         <action>
223                                                                                 <ignore></ignore>
224                                                                         </action>
225                                                                 </pluginExecution>
226                                                         </pluginExecutions>
227                                                 </lifecycleMappingMetadata>
228                                         </configuration>
229                                 </plugin>
230                         </plugins>
231                 </pluginManagement>
232         </build>
233 </project>