blob: 934e2a544fddfc3129c8b057505f36a8d735ea29 [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>janino</groupId>
76 <artifactId>janino</artifactId>
77 <version>2.5.15</version>
ChrisC025301d2017-01-31 11:40:03 +010078 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040079 <dependency>
80 <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>
ChrisC025301d2017-01-31 11:40:03 +0100113 </dependencies>
114
115 <build>
116 <finalName>${project.artifactId}-${project.version}</finalName>
117 <plugins>
ChrisC025301d2017-01-31 11:40:03 +0100118 <plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400119 <groupId>org.apache.cxf</groupId>
120 <artifactId>cxf-java2ws-plugin</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400121 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400122 <dependencies>
123 <dependency>
124 <groupId>org.apache.cxf</groupId>
125 <artifactId>cxf-rt-frontend-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400126 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400127 </dependency>
128 <dependency>
129 <groupId>org.apache.cxf</groupId>
130 <artifactId>cxf-rt-frontend-simple</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400131 <version>${cxf.version}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400132 </dependency>
133 </dependencies>
ChrisC025301d2017-01-31 11:40:03 +0100134 <executions>
135 <execution>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400136 <id>process-classes</id>
137 <phase>process-classes</phase>
138 <configuration>
139 <className>org.onap.so.adapters.requestsdb.MsoRequestsDbAdapter</className>
140 <genWsdl>true</genWsdl>
141 <verbose>true</verbose>
142 </configuration>
ChrisC025301d2017-01-31 11:40:03 +0100143 <goals>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400144 <goal>java2ws</goal>
ChrisC025301d2017-01-31 11:40:03 +0100145 </goals>
146 </execution>
147 </executions>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400148 </plugin>
149 <plugin>
150 <groupId>org.jacoco</groupId>
151 <artifactId>jacoco-maven-plugin</artifactId>
152 </plugin>
153 <plugin>
154 <groupId>org.springframework.boot</groupId>
155 <artifactId>spring-boot-maven-plugin</artifactId>
156 <version>${springboot.version}</version>
ChrisC025301d2017-01-31 11:40:03 +0100157 <configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400158 <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass>
ChrisC025301d2017-01-31 11:40:03 +0100159 </configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400160 <executions>
161 <execution>
162 <goals>
163 <goal>repackage</goal>
164 </goals>
165 </execution>
166 </executions>
167 </plugin>
168 <plugin>
169 <groupId>org.apache.maven.plugins</groupId>
170 <artifactId>maven-jar-plugin</artifactId>
171 <executions>
172 <execution>
173 <id>original</id>
174 </execution>
175 </executions>
176 </plugin>
177 <plugin>
178 <groupId>org.apache.maven.plugins</groupId>
179 <artifactId>maven-dependency-plugin</artifactId>
180 <executions>
181 <execution>
182 <id>extract-docker-file</id>
183 </execution>
184 </executions>
185 </plugin>
186 <plugin>
187 <groupId>io.fabric8</groupId>
188 <artifactId>fabric8-maven-plugin</artifactId>
189 <executions>
190 <execution>
191 <id>start</id>
192 </execution>
193 </executions>
ChrisC025301d2017-01-31 11:40:03 +0100194 </plugin>
195 </plugins>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400196 <pluginManagement>
197 <plugins>
198 <!--This plugin's configuration is used to store Eclipse m2e settings
199 only. It has no influence on the Maven build itself. -->
200 <plugin>
201 <groupId>org.eclipse.m2e</groupId>
202 <artifactId>lifecycle-mapping</artifactId>
203 <version>1.0.0</version>
204 <configuration>
205 <lifecycleMappingMetadata>
206 <pluginExecutions>
207 <pluginExecution>
208 <pluginExecutionFilter>
209 <groupId>
210 org.apache.cxf
211 </groupId>
212 <artifactId>
213 cxf-java2ws-plugin
214 </artifactId>
215 <versionRange>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400216 [3.2.5,)
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400217 </versionRange>
218 <goals>
219 <goal>java2ws</goal>
220 </goals>
221 </pluginExecutionFilter>
222 <action>
223 <ignore></ignore>
224 </action>
225 </pluginExecution>
226 </pluginExecutions>
227 </lifecycleMappingMetadata>
228 </configuration>
229 </plugin>
230 </plugins>
231 </pluginManagement>
ChrisC025301d2017-01-31 11:40:03 +0100232 </build>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400233</project>