ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 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> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>adapters</artifactId> |
seshukm | adbd1c4 | 2020-08-03 19:23:51 +0530 | [diff] [blame] | 7 | <version>1.7.1-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 8 | </parent> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 9 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 10 | <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) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame^] | 19 | <artifactId>spring-boot-starter-validation</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>org.apache.cxf</groupId> |
| 23 | <artifactId>cxf-spring-boot-starter-jaxws</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.apache.cxf</groupId> |
| 27 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.apache.cxf</groupId> |
| 31 | <artifactId>cxf-rt-rs-service-description-swagger</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 32 | </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) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame^] | 66 | <version>2.3.0</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 67 | <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) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 89 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 90 | </dependency> |
| 91 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 92 | <groupId>org.onap.so</groupId> |
| 93 | <artifactId>cxf-logging</artifactId> |
| 94 | <version>${project.version}</version> |
| 95 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 96 | |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 97 | |
| 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) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 109 | <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, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 115 | <version>3.3.3</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 116 | <dependencies> |
| 117 | <dependency> |
| 118 | <groupId>org.apache.cxf</groupId> |
| 119 | <artifactId>cxf-rt-frontend-jaxws</artifactId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 120 | <version>3.3.3</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 121 | </dependency> |
| 122 | <dependency> |
| 123 | <groupId>org.apache.cxf</groupId> |
| 124 | <artifactId>cxf-rt-frontend-simple</artifactId> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 125 | <version>3.3.3</version> |
| 126 | </dependency> |
Benjamin, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 127 | <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.ikram | 637ef54 | 2020-10-06 11:26:46 +0100 | [diff] [blame] | 146 | <version>2.4.0-b180830.0438</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 147 | </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, Max | 9868f17 | 2020-05-18 16:37:51 -0400 | [diff] [blame] | 157 | <ignoredDependencies> |
| 158 | <ignoredDependency>com.sun.xml.bind:jaxb-impl</ignoredDependency> |
| 159 | </ignoredDependencies> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 160 | </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) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 174 | <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, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 191 | <phase>package</phase> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 192 | </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, Max | 2dbbd78 | 2020-06-02 23:18:13 -0400 | [diff] [blame] | 201 | <configuration> |
| 202 | <skip>false</skip> |
| 203 | </configuration> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 204 | </execution> |
| 205 | </executions> |
| 206 | </plugin> |
| 207 | <plugin> |
| 208 | <groupId>io.fabric8</groupId> |
Benjamin, Max | 5f57d09 | 2020-05-13 17:48:03 -0400 | [diff] [blame] | 209 | <artifactId>docker-maven-plugin</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 210 | <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) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 238 | only. It has no influence on the Maven build itself. --> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 239 | <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) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 249 | org.apache.cxf |
| 250 | </groupId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 251 | <artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 252 | cxf-java2ws-plugin |
| 253 | </artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 254 | <versionRange> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 255 | [3.2.5,) |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 256 | </versionRange> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 257 | <goals> |
| 258 | <goal>java2ws</goal> |
| 259 | </goals> |
| 260 | </pluginExecutionFilter> |
| 261 | <action> |
| 262 | <ignore> |
| 263 | </ignore> |
| 264 | </action> |
| 265 | </pluginExecution> |
Benjamin, Max | 71d87a3 | 2020-06-24 10:44:53 -0400 | [diff] [blame] | 266 | <pluginExecution> |
Boslet, Cory | f5c3da8 | 2020-05-20 11:39:21 -0400 | [diff] [blame] | 267 | <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) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 279 | </pluginExecutions> |
| 280 | </lifecycleMappingMetadata> |
| 281 | </configuration> |
| 282 | </plugin> |
| 283 | </plugins> |
| 284 | </pluginManagement> |
| 285 | </build> |
Benjamin, Max (mb388a) | 69455a2 | 2018-09-04 11:21:02 -0400 | [diff] [blame] | 286 | </project> |