blob: 701b5e605a6aa831d2910f4b57743cde56c12891 [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>
seshukmadbd1c42020-08-03 19:23:51 +05307 <version>1.7.1-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>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -050019 <artifactId>spring-boot-starter-validation</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040020 </dependency>
21 <dependency>
22 <groupId>org.apache.cxf</groupId>
23 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040024 </dependency>
25 <dependency>
26 <groupId>org.apache.cxf</groupId>
27 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040028 </dependency>
29 <dependency>
30 <groupId>org.apache.cxf</groupId>
31 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040032 </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>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -050066 <version>2.3.0</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040067 <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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040089 <artifactId>micrometer-registry-prometheus</artifactId>
90 </dependency>
91 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040092 <groupId>org.onap.so</groupId>
93 <artifactId>cxf-logging</artifactId>
94 <version>${project.version}</version>
95 </dependency>
ChrisC025301d2017-01-31 11:40:03 +010096
Benjamin, Max9868f172020-05-18 16:37:51 -040097
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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400109 <build>
110 <finalName>${project.artifactId}-${project.version}</finalName>
111 <plugins>
112 <plugin>
113 <groupId>org.apache.cxf</groupId>
114 <artifactId>cxf-java2ws-plugin</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400115 <version>3.3.3</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400116 <dependencies>
117 <dependency>
118 <groupId>org.apache.cxf</groupId>
119 <artifactId>cxf-rt-frontend-jaxws</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400120 <version>3.3.3</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400121 </dependency>
122 <dependency>
123 <groupId>org.apache.cxf</groupId>
124 <artifactId>cxf-rt-frontend-simple</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400125 <version>3.3.3</version>
126 </dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400127 <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>
waqas.ikram637ef542020-10-06 11:26:46 +0100146 <version>2.4.0-b180830.0438</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400147 </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>
Benjamin, Max9868f172020-05-18 16:37:51 -0400157 <ignoredDependencies>
158 <ignoredDependency>com.sun.xml.bind:jaxb-impl</ignoredDependency>
159 </ignoredDependencies>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400160 </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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400174 <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>
Benjamin, Max2dbbd782020-06-02 23:18:13 -0400191 <phase>package</phase>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400192 </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>
Benjamin, Max2dbbd782020-06-02 23:18:13 -0400201 <configuration>
202 <skip>false</skip>
203 </configuration>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400204 </execution>
205 </executions>
206 </plugin>
207 <plugin>
208 <groupId>io.fabric8</groupId>
Benjamin, Max5f57d092020-05-13 17:48:03 -0400209 <artifactId>docker-maven-plugin</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400210 <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
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400238 only. It has no influence on the Maven build itself. -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400239 <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>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400249 org.apache.cxf
250 </groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400251 <artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400252 cxf-java2ws-plugin
253 </artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400254 <versionRange>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400255 [3.2.5,)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400256 </versionRange>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400257 <goals>
258 <goal>java2ws</goal>
259 </goals>
260 </pluginExecutionFilter>
261 <action>
262 <ignore>
263 </ignore>
264 </action>
265 </pluginExecution>
Benjamin, Max71d87a32020-06-24 10:44:53 -0400266 <pluginExecution>
Boslet, Coryf5c3da82020-05-20 11:39:21 -0400267 <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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400279 </pluginExecutions>
280 </lifecycleMappingMetadata>
281 </configuration>
282 </plugin>
283 </plugins>
284 </pluginManagement>
285 </build>
Benjamin, Max (mb388a)69455a22018-09-04 11:21:02 -0400286</project>