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" |
| 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 Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 6 | <artifactId>adapters</artifactId> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 7 | <version>1.4.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 8 | </parent> |
| 9 | |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 10 | <groupId>org.onap.so.adapters</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 11 | <artifactId>mso-requests-db-adapter</artifactId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 12 | <dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
| 19 | <artifactId>spring-boot-starter-web</artifactId> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>org.springframework.boot</groupId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 23 | <artifactId>spring-boot-starter-jdbc</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>org.apache.cxf</groupId> |
| 27 | <artifactId>cxf-spring-boot-starter-jaxws</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 28 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>org.apache.cxf</groupId> |
| 32 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 33 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 34 | </dependency> |
| 35 | <dependency> |
| 36 | <groupId>org.apache.cxf</groupId> |
| 37 | <artifactId>cxf-rt-rs-service-description-swagger</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 38 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.springframework.boot</groupId> |
| 42 | <artifactId>spring-boot-starter-test</artifactId> |
| 43 | <scope>test</scope> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 44 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.mariadb.jdbc</groupId> |
| 47 | <artifactId>mariadb-java-client</artifactId> |
| 48 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 49 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 50 | <groupId>org.onap.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 51 | <artifactId>mso-requests-db</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | </dependency> |
| 54 | <dependency> |
Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [diff] [blame] | 55 | <groupId>org.onap.so</groupId> |
| 56 | <artifactId>mso-requests-db-repositories</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 60 | <groupId>org.springframework.boot</groupId> |
| 61 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
Kalkere Ramesh, Sharan (sk720x) | df63fb2 | 2019-02-21 18:34:56 -0500 | [diff] [blame^] | 62 | <exclusions> |
| 63 | <exclusion> |
| 64 | <groupId>org.apache.tomcat</groupId> |
| 65 | <artifactId>tomcat-jdbc</artifactId> |
| 66 | </exclusion> |
| 67 | </exclusions> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 68 | <optional>true</optional> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 69 | </dependency> |
| 70 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 71 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 72 | <artifactId>mariaDB4j</artifactId> |
| 73 | <version>2.2.3</version> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.springframework.boot</groupId> |
| 78 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 79 | <optional>true</optional> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.flywaydb</groupId> |
| 83 | <artifactId>flyway-core</artifactId> |
| 84 | <optional>true</optional> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>net.javacrumbs.shedlock</groupId> |
| 88 | <artifactId>shedlock-spring</artifactId> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>net.javacrumbs.shedlock</groupId> |
| 92 | <artifactId>shedlock-provider-jdbc-template</artifactId> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>io.micrometer</groupId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 96 | <artifactId>micrometer-core</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>io.micrometer</groupId> |
| 100 | <artifactId>micrometer-registry-prometheus</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 101 | </dependency> |
Smokowski, Steve (ss835w) | e2c7749 | 2018-09-04 15:31:38 -0400 | [diff] [blame] | 102 | <dependency> |
Benjamin, Max (mb388a) | 69455a2 | 2018-09-04 11:21:02 -0400 | [diff] [blame] | 103 | <groupId>org.springframework.boot</groupId> |
| 104 | <artifactId>spring-boot-starter-data-rest</artifactId> |
| 105 | </dependency> |
| 106 | <dependency> |
Smokowski, Steve (ss835w) | e2c7749 | 2018-09-04 15:31:38 -0400 | [diff] [blame] | 107 | <groupId>org.onap.so</groupId> |
| 108 | <artifactId>cxf-logging</artifactId> |
| 109 | <version>${project.version}</version> |
| 110 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 111 | </dependencies> |
| 112 | |
| 113 | <build> |
| 114 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 115 | <plugins> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 116 | <plugin> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 117 | <groupId>org.apache.cxf</groupId> |
| 118 | <artifactId>cxf-java2ws-plugin</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 119 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 120 | <dependencies> |
| 121 | <dependency> |
| 122 | <groupId>org.apache.cxf</groupId> |
| 123 | <artifactId>cxf-rt-frontend-jaxws</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 124 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 125 | </dependency> |
| 126 | <dependency> |
| 127 | <groupId>org.apache.cxf</groupId> |
| 128 | <artifactId>cxf-rt-frontend-simple</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 129 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 130 | </dependency> |
| 131 | </dependencies> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 132 | <executions> |
| 133 | <execution> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 134 | <id>process-classes</id> |
| 135 | <phase>process-classes</phase> |
| 136 | <configuration> |
| 137 | <className>org.onap.so.adapters.requestsdb.MsoRequestsDbAdapter</className> |
| 138 | <genWsdl>true</genWsdl> |
| 139 | <verbose>true</verbose> |
| 140 | </configuration> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 141 | <goals> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 142 | <goal>java2ws</goal> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 143 | </goals> |
| 144 | </execution> |
| 145 | </executions> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 146 | </plugin> |
| 147 | <plugin> |
| 148 | <groupId>org.jacoco</groupId> |
| 149 | <artifactId>jacoco-maven-plugin</artifactId> |
| 150 | </plugin> |
| 151 | <plugin> |
| 152 | <groupId>org.springframework.boot</groupId> |
| 153 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 154 | <version>${springboot.version}</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 155 | <configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 156 | <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 157 | </configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 158 | <executions> |
| 159 | <execution> |
| 160 | <goals> |
| 161 | <goal>repackage</goal> |
| 162 | </goals> |
| 163 | </execution> |
| 164 | </executions> |
| 165 | </plugin> |
| 166 | <plugin> |
| 167 | <groupId>org.apache.maven.plugins</groupId> |
| 168 | <artifactId>maven-jar-plugin</artifactId> |
| 169 | <executions> |
| 170 | <execution> |
| 171 | <id>original</id> |
| 172 | </execution> |
| 173 | </executions> |
| 174 | </plugin> |
| 175 | <plugin> |
| 176 | <groupId>org.apache.maven.plugins</groupId> |
| 177 | <artifactId>maven-dependency-plugin</artifactId> |
| 178 | <executions> |
| 179 | <execution> |
| 180 | <id>extract-docker-file</id> |
| 181 | </execution> |
| 182 | </executions> |
| 183 | </plugin> |
| 184 | <plugin> |
| 185 | <groupId>io.fabric8</groupId> |
| 186 | <artifactId>fabric8-maven-plugin</artifactId> |
| 187 | <executions> |
| 188 | <execution> |
| 189 | <id>start</id> |
| 190 | </execution> |
| 191 | </executions> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 192 | </plugin> |
| 193 | </plugins> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 194 | <pluginManagement> |
| 195 | <plugins> |
| 196 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 197 | only. It has no influence on the Maven build itself. --> |
| 198 | <plugin> |
| 199 | <groupId>org.eclipse.m2e</groupId> |
| 200 | <artifactId>lifecycle-mapping</artifactId> |
| 201 | <version>1.0.0</version> |
| 202 | <configuration> |
| 203 | <lifecycleMappingMetadata> |
| 204 | <pluginExecutions> |
| 205 | <pluginExecution> |
| 206 | <pluginExecutionFilter> |
| 207 | <groupId> |
| 208 | org.apache.cxf |
| 209 | </groupId> |
| 210 | <artifactId> |
| 211 | cxf-java2ws-plugin |
| 212 | </artifactId> |
| 213 | <versionRange> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 214 | [3.2.5,) |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 215 | </versionRange> |
| 216 | <goals> |
| 217 | <goal>java2ws</goal> |
| 218 | </goals> |
| 219 | </pluginExecutionFilter> |
| 220 | <action> |
| 221 | <ignore></ignore> |
| 222 | </action> |
| 223 | </pluginExecution> |
| 224 | </pluginExecutions> |
| 225 | </lifecycleMappingMetadata> |
| 226 | </configuration> |
| 227 | </plugin> |
| 228 | </plugins> |
| 229 | </pluginManagement> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 230 | </build> |
Benjamin, Max (mb388a) | 69455a2 | 2018-09-04 11:21:02 -0400 | [diff] [blame] | 231 | </project> |