blob: 6669895ef1941cf4b63b9ec52b99e3921c4cfbe2 [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"
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>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +01006 <artifactId>adapters</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 <version>1.3.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
9
Arthur Martella22e015f2018-02-22 14:24:40 -050010 <groupId>org.onap.so.adapters</groupId>
ChrisC025301d2017-01-31 11:40:03 +010011 <artifactId>mso-requests-db-adapter</artifactId>
ChrisC025301d2017-01-31 11:40:03 +010012 <dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040013 <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>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -040038 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040039 </dependency>
40 <dependency>
41 <groupId>org.apache.cxf</groupId>
42 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -040043 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040044 </dependency>
45 <dependency>
46 <groupId>org.apache.cxf</groupId>
47 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -040048 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040049 </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>
ChrisC025301d2017-01-31 11:40:03 +010064 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050065 <groupId>org.onap.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +010066 <artifactId>mso-requests-db</artifactId>
67 <version>${project.version}</version>
68 </dependency>
69 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040070 <groupId>org.springframework.boot</groupId>
71 <artifactId>spring-boot-starter-data-jpa</artifactId>
72 <optional>true</optional>
ChrisC025301d2017-01-31 11:40:03 +010073 </dependency>
74 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040075 <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>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -0400108 <dependency>
Benjamin, Max (mb388a)69455a22018-09-04 11:21:02 -0400109 <groupId>org.springframework.boot</groupId>
110 <artifactId>spring-boot-starter-data-rest</artifactId>
111 </dependency>
112 <dependency>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -0400113 <groupId>org.onap.so</groupId>
114 <artifactId>cxf-logging</artifactId>
115 <version>${project.version}</version>
116 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100117 </dependencies>
118
119 <build>
120 <finalName>${project.artifactId}-${project.version}</finalName>
121 <plugins>
ChrisC025301d2017-01-31 11:40:03 +0100122 <plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400123 <groupId>org.apache.cxf</groupId>
124 <artifactId>cxf-java2ws-plugin</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400125 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400126 <dependencies>
127 <dependency>
128 <groupId>org.apache.cxf</groupId>
129 <artifactId>cxf-rt-frontend-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400130 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400131 </dependency>
132 <dependency>
133 <groupId>org.apache.cxf</groupId>
134 <artifactId>cxf-rt-frontend-simple</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400135 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400136 </dependency>
137 </dependencies>
ChrisC025301d2017-01-31 11:40:03 +0100138 <executions>
139 <execution>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400140 <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>
ChrisC025301d2017-01-31 11:40:03 +0100147 <goals>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400148 <goal>java2ws</goal>
ChrisC025301d2017-01-31 11:40:03 +0100149 </goals>
150 </execution>
151 </executions>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400152 </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>
ChrisC025301d2017-01-31 11:40:03 +0100161 <configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400162 <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass>
ChrisC025301d2017-01-31 11:40:03 +0100163 </configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400164 <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>
ChrisC025301d2017-01-31 11:40:03 +0100198 </plugin>
199 </plugins>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400200 <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>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400220 [3.2.5,)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400221 </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>
ChrisC025301d2017-01-31 11:40:03 +0100236 </build>
Benjamin, Max (mb388a)69455a22018-09-04 11:21:02 -0400237</project>