blob: 55e59d134e8e99b662b016b0213d726526eb357c [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002 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>
seshukmb9af26a2020-02-26 19:30:17 +08007 <version>1.6.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04008 </parent>
ChrisC025301d2017-01-31 11:40:03 +01009
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040010 <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 </dependency>
25 <dependency>
26 <groupId>org.apache.cxf</groupId>
27 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
28 <version>${cxf.version}</version>
29 </dependency>
30 <dependency>
31 <groupId>org.apache.cxf</groupId>
32 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
33 <version>${cxf.version}</version>
34 </dependency>
35 <dependency>
36 <groupId>org.apache.cxf</groupId>
37 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
38 <version>${cxf.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-test</artifactId>
43 <scope>test</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.mariadb.jdbc</groupId>
47 <artifactId>mariadb-java-client</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.onap.so</groupId>
51 <artifactId>mso-requests-db</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.onap.so</groupId>
56 <artifactId>mso-requests-db-repositories</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-data-jpa</artifactId>
62 <exclusions>
63 <exclusion>
64 <groupId>org.apache.tomcat</groupId>
65 <artifactId>tomcat-jdbc</artifactId>
66 </exclusion>
67 </exclusions>
68 <optional>true</optional>
69 </dependency>
70 <dependency>
71 <groupId>ch.vorburger.mariaDB4j</groupId>
72 <artifactId>mariaDB4j</artifactId>
73 <version>2.2.3</version>
74 <scope>test</scope>
75 </dependency>
76 <dependency>
77 <groupId>org.springframework.boot</groupId>
78 <artifactId>spring-boot-configuration-processor</artifactId>
79 <optional>true</optional>
80 </dependency>
81 <dependency>
82 <groupId>org.flywaydb</groupId>
83 <artifactId>flyway-core</artifactId>
84 <optional>true</optional>
85 </dependency>
86 <dependency>
87 <groupId>net.javacrumbs.shedlock</groupId>
88 <artifactId>shedlock-spring</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>net.javacrumbs.shedlock</groupId>
92 <artifactId>shedlock-provider-jdbc-template</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>io.micrometer</groupId>
96 <artifactId>micrometer-core</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>io.micrometer</groupId>
100 <artifactId>micrometer-registry-prometheus</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>org.springframework.boot</groupId>
104 <artifactId>spring-boot-starter-data-rest</artifactId>
105 </dependency>
106 <dependency>
107 <groupId>org.onap.so</groupId>
108 <artifactId>cxf-logging</artifactId>
109 <version>${project.version}</version>
110 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100111
Benjamin, Max9868f172020-05-18 16:37:51 -0400112
113 </dependencies>
114 <pluginRepositories>
115 <pluginRepository>
116 <id>apache.snapshots</id>
117 <name>Maven Plugin Snapshots</name>
118 <url>http://repository.apache.org/snapshots/</url>
119 <snapshots>
120 <enabled>true</enabled>
121 </snapshots>
122 </pluginRepository>
123 </pluginRepositories>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400124 <build>
125 <finalName>${project.artifactId}-${project.version}</finalName>
126 <plugins>
127 <plugin>
128 <groupId>org.apache.cxf</groupId>
129 <artifactId>cxf-java2ws-plugin</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400130 <version>3.3.3</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400131 <dependencies>
132 <dependency>
133 <groupId>org.apache.cxf</groupId>
134 <artifactId>cxf-rt-frontend-jaxws</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400135 <version>3.3.3</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400136 </dependency>
137 <dependency>
138 <groupId>org.apache.cxf</groupId>
139 <artifactId>cxf-rt-frontend-simple</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400140 <version>3.3.3</version>
141 </dependency>
142
143 <dependency>
144 <groupId>com.sun.xml.ws</groupId>
145 <artifactId>jaxws-ri</artifactId>
146 <version>2.3.0</version>
147 <type>pom</type>
148 </dependency>
149 <dependency>
150 <groupId>javax.annotation</groupId>
151 <artifactId>javax.annotation-api</artifactId>
152 <version>1.3.2</version>
153 </dependency>
154 <dependency>
155 <groupId>javax.xml.bind</groupId>
156 <artifactId>jaxb-api</artifactId>
157 <version>2.4.0-b180725.0427</version>
158 </dependency>
159 <dependency>
160 <groupId>org.glassfish.jaxb</groupId>
161 <artifactId>jaxb-runtime</artifactId>
162 <version>2.4.0-b180725.0644</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400163 </dependency>
164 </dependencies>
165 <executions>
166 <execution>
167 <id>process-classes</id>
168 <phase>process-classes</phase>
169 <configuration>
170 <className>org.onap.so.adapters.requestsdb.MsoRequestsDbAdapter</className>
171 <genWsdl>true</genWsdl>
172 <verbose>true</verbose>
Benjamin, Max9868f172020-05-18 16:37:51 -0400173 <ignoredDependencies>
174 <ignoredDependency>com.sun.xml.bind:jaxb-impl</ignoredDependency>
175 </ignoredDependencies>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400176 </configuration>
177 <goals>
178 <goal>java2ws</goal>
179 </goals>
180 </execution>
181 </executions>
182 </plugin>
183 <plugin>
184 <groupId>org.jacoco</groupId>
185 <artifactId>jacoco-maven-plugin</artifactId>
186 </plugin>
187 <plugin>
188 <groupId>org.springframework.boot</groupId>
189 <artifactId>spring-boot-maven-plugin</artifactId>
190 <version>${springboot.version}</version>
191 <configuration>
192 <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass>
193 </configuration>
194 <executions>
195 <execution>
196 <goals>
197 <goal>repackage</goal>
198 </goals>
199 </execution>
200 </executions>
201 </plugin>
202 <plugin>
203 <groupId>org.apache.maven.plugins</groupId>
204 <artifactId>maven-jar-plugin</artifactId>
205 <executions>
206 <execution>
207 <id>original</id>
Benjamin, Max2dbbd782020-06-02 23:18:13 -0400208 <phase>package</phase>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400209 </execution>
210 </executions>
211 </plugin>
212 <plugin>
213 <groupId>org.apache.maven.plugins</groupId>
214 <artifactId>maven-dependency-plugin</artifactId>
215 <executions>
216 <execution>
217 <id>extract-docker-file</id>
Benjamin, Max2dbbd782020-06-02 23:18:13 -0400218 <configuration>
219 <skip>false</skip>
220 </configuration>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400221 </execution>
222 </executions>
223 </plugin>
224 <plugin>
225 <groupId>io.fabric8</groupId>
Benjamin, Max5f57d092020-05-13 17:48:03 -0400226 <artifactId>docker-maven-plugin</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400227 <executions>
228 <execution>
229 <id>start</id>
230 </execution>
231 </executions>
232 </plugin>
233 <plugin>
234 <groupId>org.apache.maven.plugins</groupId>
235 <artifactId>maven-surefire-plugin</artifactId>
236 <executions>
237 <execution>
238 <id>default-test</id>
239 <goals>
240 <goal>test</goal>
241 </goals>
242 <configuration>
243 <includes>
244 <include>**/AllTestsTestSuite.java</include>
245 </includes>
246 <parallel>suites</parallel>
247 </configuration>
248 </execution>
249 </executions>
250 </plugin>
251 </plugins>
252 <pluginManagement>
253 <plugins>
254 <!--This plugin's configuration is used to store Eclipse m2e settings
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400255 only. It has no influence on the Maven build itself. -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400256 <plugin>
257 <groupId>org.eclipse.m2e</groupId>
258 <artifactId>lifecycle-mapping</artifactId>
259 <version>1.0.0</version>
260 <configuration>
261 <lifecycleMappingMetadata>
262 <pluginExecutions>
263 <pluginExecution>
264 <pluginExecutionFilter>
265 <groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400266 org.apache.cxf
267 </groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400268 <artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400269 cxf-java2ws-plugin
270 </artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400271 <versionRange>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400272 [3.2.5,)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400273 </versionRange>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400274 <goals>
275 <goal>java2ws</goal>
276 </goals>
277 </pluginExecutionFilter>
278 <action>
279 <ignore>
280 </ignore>
281 </action>
282 </pluginExecution>
Benjamin, Max71d87a32020-06-24 10:44:53 -0400283 <pluginExecution>
Boslet, Coryf5c3da82020-05-20 11:39:21 -0400284 <pluginExecutionFilter>
285 <groupId>org.apache.maven.plugins</groupId>
286 <artifactId>maven-dependency-plugin</artifactId>
287 <versionRange>[1.0.0,)</versionRange>
288 <goals>
289 <goal>unpack</goal>
290 </goals>
291 </pluginExecutionFilter>
292 <action>
293 <execute />
294 </action>
295 </pluginExecution>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400296 </pluginExecutions>
297 </lifecycleMappingMetadata>
298 </configuration>
299 </plugin>
300 </plugins>
301 </pluginManagement>
302 </build>
Benjamin, Max (mb388a)69455a22018-09-04 11:21:02 -0400303</project>