blob: 9dff66b00d57d86d44ee9d9955ba7bca0ee4bdf0 [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)dfdb5a12018-09-10 09:28:05 -040070 <groupId>org.onap.so</groupId>
71 <artifactId>mso-requests-db-repositories</artifactId>
72 <version>${project.version}</version>
73 </dependency>
74 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040075 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-starter-data-jpa</artifactId>
77 <optional>true</optional>
ChrisC025301d2017-01-31 11:40:03 +010078 </dependency>
79 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040080 <groupId>ch.vorburger.mariaDB4j</groupId>
81 <artifactId>mariaDB4j</artifactId>
82 <version>2.2.3</version>
83 <scope>test</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.springframework.boot</groupId>
87 <artifactId>spring-boot-configuration-processor</artifactId>
88 <optional>true</optional>
89 </dependency>
90 <dependency>
91 <groupId>org.flywaydb</groupId>
92 <artifactId>flyway-core</artifactId>
93 <optional>true</optional>
94 </dependency>
95 <dependency>
96 <groupId>net.javacrumbs.shedlock</groupId>
97 <artifactId>shedlock-spring</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>net.javacrumbs.shedlock</groupId>
101 <artifactId>shedlock-provider-jdbc-template</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>io.micrometer</groupId>
105 <artifactId>micrometer-spring-legacy</artifactId>
106 <version>1.0.5</version>
107 </dependency>
108 <dependency>
109 <groupId>io.micrometer</groupId>
110 <artifactId>micrometer-registry-prometheus</artifactId>
111 <version>1.0.5</version>
112 </dependency>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -0400113 <dependency>
Benjamin, Max (mb388a)69455a22018-09-04 11:21:02 -0400114 <groupId>org.springframework.boot</groupId>
115 <artifactId>spring-boot-starter-data-rest</artifactId>
116 </dependency>
117 <dependency>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -0400118 <groupId>org.onap.so</groupId>
119 <artifactId>cxf-logging</artifactId>
120 <version>${project.version}</version>
121 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100122 </dependencies>
123
124 <build>
125 <finalName>${project.artifactId}-${project.version}</finalName>
126 <plugins>
ChrisC025301d2017-01-31 11:40:03 +0100127 <plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400128 <groupId>org.apache.cxf</groupId>
129 <artifactId>cxf-java2ws-plugin</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 <dependencies>
132 <dependency>
133 <groupId>org.apache.cxf</groupId>
134 <artifactId>cxf-rt-frontend-jaxws</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 <dependency>
138 <groupId>org.apache.cxf</groupId>
139 <artifactId>cxf-rt-frontend-simple</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400140 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400141 </dependency>
142 </dependencies>
ChrisC025301d2017-01-31 11:40:03 +0100143 <executions>
144 <execution>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400145 <id>process-classes</id>
146 <phase>process-classes</phase>
147 <configuration>
148 <className>org.onap.so.adapters.requestsdb.MsoRequestsDbAdapter</className>
149 <genWsdl>true</genWsdl>
150 <verbose>true</verbose>
151 </configuration>
ChrisC025301d2017-01-31 11:40:03 +0100152 <goals>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400153 <goal>java2ws</goal>
ChrisC025301d2017-01-31 11:40:03 +0100154 </goals>
155 </execution>
156 </executions>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400157 </plugin>
158 <plugin>
159 <groupId>org.jacoco</groupId>
160 <artifactId>jacoco-maven-plugin</artifactId>
161 </plugin>
162 <plugin>
163 <groupId>org.springframework.boot</groupId>
164 <artifactId>spring-boot-maven-plugin</artifactId>
165 <version>${springboot.version}</version>
ChrisC025301d2017-01-31 11:40:03 +0100166 <configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400167 <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass>
ChrisC025301d2017-01-31 11:40:03 +0100168 </configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400169 <executions>
170 <execution>
171 <goals>
172 <goal>repackage</goal>
173 </goals>
174 </execution>
175 </executions>
176 </plugin>
177 <plugin>
178 <groupId>org.apache.maven.plugins</groupId>
179 <artifactId>maven-jar-plugin</artifactId>
180 <executions>
181 <execution>
182 <id>original</id>
183 </execution>
184 </executions>
185 </plugin>
186 <plugin>
187 <groupId>org.apache.maven.plugins</groupId>
188 <artifactId>maven-dependency-plugin</artifactId>
189 <executions>
190 <execution>
191 <id>extract-docker-file</id>
192 </execution>
193 </executions>
194 </plugin>
195 <plugin>
196 <groupId>io.fabric8</groupId>
197 <artifactId>fabric8-maven-plugin</artifactId>
198 <executions>
199 <execution>
200 <id>start</id>
201 </execution>
202 </executions>
ChrisC025301d2017-01-31 11:40:03 +0100203 </plugin>
204 </plugins>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400205 <pluginManagement>
206 <plugins>
207 <!--This plugin's configuration is used to store Eclipse m2e settings
208 only. It has no influence on the Maven build itself. -->
209 <plugin>
210 <groupId>org.eclipse.m2e</groupId>
211 <artifactId>lifecycle-mapping</artifactId>
212 <version>1.0.0</version>
213 <configuration>
214 <lifecycleMappingMetadata>
215 <pluginExecutions>
216 <pluginExecution>
217 <pluginExecutionFilter>
218 <groupId>
219 org.apache.cxf
220 </groupId>
221 <artifactId>
222 cxf-java2ws-plugin
223 </artifactId>
224 <versionRange>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400225 [3.2.5,)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400226 </versionRange>
227 <goals>
228 <goal>java2ws</goal>
229 </goals>
230 </pluginExecutionFilter>
231 <action>
232 <ignore></ignore>
233 </action>
234 </pluginExecution>
235 </pluginExecutions>
236 </lifecycleMappingMetadata>
237 </configuration>
238 </plugin>
239 </plugins>
240 </pluginManagement>
ChrisC025301d2017-01-31 11:40:03 +0100241 </build>
Benjamin, Max (mb388a)69455a22018-09-04 11:21:02 -0400242</project>