blob: 4a4d09a0a9881d0eefc752fd84675b20273b6f8a [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>
Rob Daugherty325d4e22018-10-19 15:13:38 -04007 <version>1.4.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>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -040023 <artifactId>spring-boot-starter-jdbc</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040024 </dependency>
25 <dependency>
26 <groupId>org.apache.cxf</groupId>
27 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -040028 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040029 </dependency>
30 <dependency>
31 <groupId>org.apache.cxf</groupId>
32 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -040033 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040034 </dependency>
35 <dependency>
36 <groupId>org.apache.cxf</groupId>
37 <artifactId>cxf-rt-rs-service-description-swagger</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.springframework.boot</groupId>
42 <artifactId>spring-boot-starter-test</artifactId>
43 <scope>test</scope>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -040044 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040045 <dependency>
46 <groupId>org.mariadb.jdbc</groupId>
47 <artifactId>mariadb-java-client</artifactId>
48 </dependency>
ChrisC025301d2017-01-31 11:40:03 +010049 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050050 <groupId>org.onap.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +010051 <artifactId>mso-requests-db</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
Benjamin, Max (mb388a)dfdb5a12018-09-10 09:28:05 -040055 <groupId>org.onap.so</groupId>
56 <artifactId>mso-requests-db-repositories</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040060 <groupId>org.springframework.boot</groupId>
61 <artifactId>spring-boot-starter-data-jpa</artifactId>
62 <optional>true</optional>
ChrisC025301d2017-01-31 11:40:03 +010063 </dependency>
64 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040065 <groupId>ch.vorburger.mariaDB4j</groupId>
66 <artifactId>mariaDB4j</artifactId>
67 <version>2.2.3</version>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.springframework.boot</groupId>
72 <artifactId>spring-boot-configuration-processor</artifactId>
73 <optional>true</optional>
74 </dependency>
75 <dependency>
76 <groupId>org.flywaydb</groupId>
77 <artifactId>flyway-core</artifactId>
78 <optional>true</optional>
79 </dependency>
80 <dependency>
81 <groupId>net.javacrumbs.shedlock</groupId>
82 <artifactId>shedlock-spring</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>net.javacrumbs.shedlock</groupId>
86 <artifactId>shedlock-provider-jdbc-template</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>io.micrometer</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -040090 <artifactId>micrometer-core</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040091 </dependency>
92 <dependency>
93 <groupId>io.micrometer</groupId>
94 <artifactId>micrometer-registry-prometheus</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040095 </dependency>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -040096 <dependency>
Benjamin, Max (mb388a)69455a22018-09-04 11:21:02 -040097 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-starter-data-rest</artifactId>
99 </dependency>
100 <dependency>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -0400101 <groupId>org.onap.so</groupId>
102 <artifactId>cxf-logging</artifactId>
103 <version>${project.version}</version>
104 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100105 </dependencies>
106
107 <build>
108 <finalName>${project.artifactId}-${project.version}</finalName>
109 <plugins>
ChrisC025301d2017-01-31 11:40:03 +0100110 <plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400111 <groupId>org.apache.cxf</groupId>
112 <artifactId>cxf-java2ws-plugin</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400113 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400114 <dependencies>
115 <dependency>
116 <groupId>org.apache.cxf</groupId>
117 <artifactId>cxf-rt-frontend-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400118 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400119 </dependency>
120 <dependency>
121 <groupId>org.apache.cxf</groupId>
122 <artifactId>cxf-rt-frontend-simple</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400123 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400124 </dependency>
125 </dependencies>
ChrisC025301d2017-01-31 11:40:03 +0100126 <executions>
127 <execution>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400128 <id>process-classes</id>
129 <phase>process-classes</phase>
130 <configuration>
131 <className>org.onap.so.adapters.requestsdb.MsoRequestsDbAdapter</className>
132 <genWsdl>true</genWsdl>
133 <verbose>true</verbose>
134 </configuration>
ChrisC025301d2017-01-31 11:40:03 +0100135 <goals>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400136 <goal>java2ws</goal>
ChrisC025301d2017-01-31 11:40:03 +0100137 </goals>
138 </execution>
139 </executions>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400140 </plugin>
141 <plugin>
142 <groupId>org.jacoco</groupId>
143 <artifactId>jacoco-maven-plugin</artifactId>
144 </plugin>
145 <plugin>
146 <groupId>org.springframework.boot</groupId>
147 <artifactId>spring-boot-maven-plugin</artifactId>
148 <version>${springboot.version}</version>
ChrisC025301d2017-01-31 11:40:03 +0100149 <configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400150 <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass>
ChrisC025301d2017-01-31 11:40:03 +0100151 </configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400152 <executions>
153 <execution>
154 <goals>
155 <goal>repackage</goal>
156 </goals>
157 </execution>
158 </executions>
159 </plugin>
160 <plugin>
161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-jar-plugin</artifactId>
163 <executions>
164 <execution>
165 <id>original</id>
166 </execution>
167 </executions>
168 </plugin>
169 <plugin>
170 <groupId>org.apache.maven.plugins</groupId>
171 <artifactId>maven-dependency-plugin</artifactId>
172 <executions>
173 <execution>
174 <id>extract-docker-file</id>
175 </execution>
176 </executions>
177 </plugin>
178 <plugin>
179 <groupId>io.fabric8</groupId>
180 <artifactId>fabric8-maven-plugin</artifactId>
181 <executions>
182 <execution>
183 <id>start</id>
184 </execution>
185 </executions>
ChrisC025301d2017-01-31 11:40:03 +0100186 </plugin>
187 </plugins>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400188 <pluginManagement>
189 <plugins>
190 <!--This plugin's configuration is used to store Eclipse m2e settings
191 only. It has no influence on the Maven build itself. -->
192 <plugin>
193 <groupId>org.eclipse.m2e</groupId>
194 <artifactId>lifecycle-mapping</artifactId>
195 <version>1.0.0</version>
196 <configuration>
197 <lifecycleMappingMetadata>
198 <pluginExecutions>
199 <pluginExecution>
200 <pluginExecutionFilter>
201 <groupId>
202 org.apache.cxf
203 </groupId>
204 <artifactId>
205 cxf-java2ws-plugin
206 </artifactId>
207 <versionRange>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400208 [3.2.5,)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400209 </versionRange>
210 <goals>
211 <goal>java2ws</goal>
212 </goals>
213 </pluginExecutionFilter>
214 <action>
215 <ignore></ignore>
216 </action>
217 </pluginExecution>
218 </pluginExecutions>
219 </lifecycleMappingMetadata>
220 </configuration>
221 </plugin>
222 </plugins>
223 </pluginManagement>
ChrisC025301d2017-01-31 11:40:03 +0100224 </build>
Benjamin, Max (mb388a)69455a22018-09-04 11:21:02 -0400225</project>