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> |
| 62 | <optional>true</optional> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 63 | </dependency> |
| 64 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 65 | <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) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 90 | <artifactId>micrometer-core</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>io.micrometer</groupId> |
| 94 | <artifactId>micrometer-registry-prometheus</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 95 | </dependency> |
Smokowski, Steve (ss835w) | e2c7749 | 2018-09-04 15:31:38 -0400 | [diff] [blame] | 96 | <dependency> |
Benjamin, Max (mb388a) | 69455a2 | 2018-09-04 11:21:02 -0400 | [diff] [blame] | 97 | <groupId>org.springframework.boot</groupId> |
| 98 | <artifactId>spring-boot-starter-data-rest</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
Smokowski, Steve (ss835w) | e2c7749 | 2018-09-04 15:31:38 -0400 | [diff] [blame] | 101 | <groupId>org.onap.so</groupId> |
| 102 | <artifactId>cxf-logging</artifactId> |
| 103 | <version>${project.version}</version> |
| 104 | </dependency> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 105 | </dependencies> |
| 106 | |
| 107 | <build> |
| 108 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 109 | <plugins> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 110 | <plugin> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 111 | <groupId>org.apache.cxf</groupId> |
| 112 | <artifactId>cxf-java2ws-plugin</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 113 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 114 | <dependencies> |
| 115 | <dependency> |
| 116 | <groupId>org.apache.cxf</groupId> |
| 117 | <artifactId>cxf-rt-frontend-jaxws</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 118 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.apache.cxf</groupId> |
| 122 | <artifactId>cxf-rt-frontend-simple</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 123 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 124 | </dependency> |
| 125 | </dependencies> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 126 | <executions> |
| 127 | <execution> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 128 | <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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 135 | <goals> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 136 | <goal>java2ws</goal> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 137 | </goals> |
| 138 | </execution> |
| 139 | </executions> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 140 | </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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 149 | <configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 150 | <mainClass>org.onap.so.adapters.requestsdb.application.MSORequestDBApplication</mainClass> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 151 | </configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 152 | <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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 186 | </plugin> |
| 187 | </plugins> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 188 | <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) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 208 | [3.2.5,) |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 209 | </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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 224 | </build> |
Benjamin, Max (mb388a) | 69455a2 | 2018-09-04 11:21:02 -0400 | [diff] [blame] | 225 | </project> |