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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 4 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.onap.so</groupId> |
| 7 | <artifactId>mso-api-handlers</artifactId> |
| 8 | <version>1.4.0-SNAPSHOT</version> |
| 9 | </parent> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 10 | |
| 11 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 12 | <artifactId>mso-api-handler-infra</artifactId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 13 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 14 | <name>mso-api-handler-infra</name> |
| 15 | <description>ONAP SO API Handler Infra</description> |
| 16 | <properties> |
| 17 | <camunda.version>7.10.0</camunda.version> |
| 18 | <camunda.bpm.assert.version>1.2</camunda.bpm.assert.version> |
| 19 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 20 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
Arindam Mondal | c530c8d | 2019-09-09 15:19:42 +0900 | [diff] [blame^] | 21 | <swagger.version>2.0.8</swagger.version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 22 | <jax-rs-version>1.1.1</jax-rs-version> |
| 23 | <json4s-jackson-version>3.6.0</json4s-jackson-version> |
| 24 | <json4s-core-version>3.6.0</json4s-core-version> |
| 25 | <reflections-version>0.9.9-RC1</reflections-version> |
| 26 | <paranamer-version>2.5.2</paranamer-version> |
| 27 | <scannotation-version>1.0.3</scannotation-version> |
| 28 | <java.version>1.8</java.version> |
| 29 | </properties> |
| 30 | <dependencyManagement> |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <!-- Import dependency management from Spring Boot --> |
| 34 | <groupId>org.springframework.boot</groupId> |
| 35 | <artifactId>spring-boot-dependencies</artifactId> |
| 36 | <version>${springboot.version}</version> |
| 37 | <type>pom</type> |
| 38 | <scope>import</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <!-- Import dependency management from camunda --> |
| 42 | <groupId>org.camunda.bpm</groupId> |
| 43 | <artifactId>camunda-bom</artifactId> |
| 44 | <version>${camunda.version}</version> |
| 45 | <scope>import</scope> |
| 46 | <type>pom</type> |
| 47 | </dependency> |
| 48 | </dependencies> |
| 49 | </dependencyManagement> |
| 50 | <dependencies> |
| 51 | <dependency> |
| 52 | <groupId>org.camunda.bpm</groupId> |
| 53 | <artifactId>camunda-engine</artifactId> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.springframework.boot</groupId> |
| 57 | <artifactId>spring-boot-starter-web</artifactId> |
| 58 | </dependency> |
Arindam Mondal | c530c8d | 2019-09-09 15:19:42 +0900 | [diff] [blame^] | 59 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 60 | <dependency> |
Arindam Mondal | c530c8d | 2019-09-09 15:19:42 +0900 | [diff] [blame^] | 61 | <groupId>io.swagger.core.v3</groupId> |
| 62 | <artifactId>swagger-annotations</artifactId> |
| 63 | <version>${swagger.version}</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>io.swagger.core.v3</groupId> |
| 67 | <artifactId>swagger-jaxrs2</artifactId> |
| 68 | <version>2.0.6</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>com.h2database</groupId> |
| 72 | <artifactId>h2</artifactId> |
| 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>org.mariadb.jdbc</groupId> |
| 76 | <artifactId>mariadb-java-client</artifactId> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.springframework.boot</groupId> |
| 80 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.springframework.boot</groupId> |
| 84 | <artifactId>spring-boot-starter-jersey</artifactId> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>org.springframework.boot</groupId> |
| 88 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 89 | <exclusions> |
| 90 | <exclusion> |
| 91 | <groupId>org.apache.tomcat</groupId> |
| 92 | <artifactId>tomcat-jdbc</artifactId> |
| 93 | </exclusion> |
| 94 | </exclusions> |
| 95 | </dependency> |
| 96 | <dependency> |
Plummer, Brittany | e58d8dd | 2019-07-22 08:44:15 -0500 | [diff] [blame] | 97 | <groupId>org.springframework.retry</groupId> |
| 98 | <artifactId>spring-retry</artifactId> |
| 99 | </dependency> |
| 100 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 101 | <groupId>commons-lang</groupId> |
| 102 | <artifactId>commons-lang</artifactId> |
| 103 | <version>2.6</version> |
| 104 | </dependency> |
| 105 | <dependency> |
| 106 | <groupId>javax.activation</groupId> |
| 107 | <artifactId>activation</artifactId> |
| 108 | <version>1.1.1</version> |
| 109 | </dependency> |
| 110 | <dependency> |
| 111 | <groupId>javax.transaction</groupId> |
| 112 | <artifactId>jta</artifactId> |
| 113 | <version>1.1</version> |
| 114 | </dependency> |
| 115 | <dependency> |
| 116 | <groupId>org.json4s</groupId> |
| 117 | <artifactId>json4s-jackson_2.12</artifactId> |
| 118 | <version>${json4s-jackson-version}</version> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.json4s</groupId> |
| 122 | <artifactId>json4s-core_2.12</artifactId> |
| 123 | <version>${json4s-core-version}</version> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>javax.servlet</groupId> |
| 127 | <artifactId>javax.servlet-api</artifactId> |
| 128 | </dependency> |
| 129 | <dependency> |
| 130 | <groupId>javax.interceptor</groupId> |
| 131 | <artifactId>javax.interceptor-api</artifactId> |
| 132 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 133 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 134 | <!-- Dependencies on other MSO Projects --> |
| 135 | <dependency> |
| 136 | <groupId>org.onap.so</groupId> |
| 137 | <artifactId>mso-requests-db</artifactId> |
| 138 | <version>${project.version}</version> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.onap.so</groupId> |
| 142 | <artifactId>mso-requests-db-repositories</artifactId> |
| 143 | <version>${project.version}</version> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>org.onap.so</groupId> |
| 147 | <artifactId>mso-catalog-db</artifactId> |
| 148 | <version>${project.version}</version> |
| 149 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 150 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 151 | <!-- Test Dependencies --> |
| 152 | <dependency> |
| 153 | <groupId>pl.pragmatists</groupId> |
| 154 | <artifactId>JUnitParams</artifactId> |
| 155 | <version>1.0.5</version> |
| 156 | <scope>test</scope> |
| 157 | </dependency> |
| 158 | <dependency> |
| 159 | <groupId>junit</groupId> |
| 160 | <artifactId>junit</artifactId> |
| 161 | <scope>test</scope> |
| 162 | </dependency> |
| 163 | <dependency> |
| 164 | <groupId>org.onap.sdc.sdc-distribution-client</groupId> |
| 165 | <artifactId>sdc-distribution-client</artifactId> |
| 166 | <version>1.3.0</version> |
| 167 | <exclusions> |
| 168 | <exclusion> |
| 169 | <groupId>org.slf4j</groupId> |
| 170 | <artifactId>slf4j-log4j12</artifactId> |
| 171 | </exclusion> |
| 172 | </exclusions> |
| 173 | </dependency> |
| 174 | <dependency> |
| 175 | <groupId>com.github.java-json-tools</groupId> |
| 176 | <artifactId>json-schema-core</artifactId> |
| 177 | <version>1.2.8</version> |
| 178 | </dependency> |
| 179 | <dependency> |
| 180 | <groupId>com.github.java-json-tools</groupId> |
| 181 | <artifactId>json-schema-validator</artifactId> |
| 182 | <version>2.2.8</version> |
| 183 | </dependency> |
| 184 | <dependency> |
| 185 | <groupId>org.springframework.boot</groupId> |
| 186 | <artifactId>spring-boot-starter-test</artifactId> |
| 187 | <scope>test</scope> |
| 188 | </dependency> |
| 189 | <dependency> |
| 190 | <groupId>com.h2database</groupId> |
| 191 | <artifactId>h2</artifactId> |
| 192 | </dependency> |
| 193 | <dependency> |
| 194 | <groupId>org.springframework.boot</groupId> |
| 195 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 196 | <optional>true</optional> |
| 197 | </dependency> |
| 198 | <dependency> |
| 199 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 200 | <artifactId>mariaDB4j</artifactId> |
| 201 | <version>2.2.3</version> |
| 202 | <scope>test</scope> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>com.googlecode.junit-toolbox</groupId> |
| 206 | <artifactId>junit-toolbox</artifactId> |
| 207 | <version>2.4</version> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>org.onap.so</groupId> |
| 211 | <artifactId>mso-api-handler-common</artifactId> |
| 212 | <version>${project.version}</version> |
| 213 | </dependency> |
| 214 | <dependency> |
| 215 | <groupId>org.springframework.cloud</groupId> |
| 216 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 217 | <version>1.2.4.RELEASE</version> |
| 218 | <scope>test</scope> |
| 219 | </dependency> |
| 220 | <dependency> |
| 221 | <groupId>io.micrometer</groupId> |
| 222 | <artifactId>micrometer-core</artifactId> |
| 223 | </dependency> |
| 224 | <dependency> |
| 225 | <groupId>io.micrometer</groupId> |
| 226 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 227 | </dependency> |
| 228 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 229 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 230 | <build> |
| 231 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 232 | <plugins> |
| 233 | <plugin> |
| 234 | <groupId>org.apache.maven.plugins</groupId> |
| 235 | <artifactId>maven-surefire-plugin</artifactId> |
| 236 | <executions> |
| 237 | <execution> |
| 238 | <id>default-test</id> |
| 239 | <goals> |
| 240 | <goal>test</goal> |
| 241 | </goals> |
| 242 | <configuration> |
| 243 | <includes> |
| 244 | <include>**/AllTestsTestSuite.java</include> |
| 245 | </includes> |
| 246 | <parallel>suites</parallel> |
| 247 | </configuration> |
| 248 | </execution> |
| 249 | </executions> |
| 250 | </plugin> |
| 251 | <plugin> |
| 252 | <groupId>org.springframework.boot</groupId> |
| 253 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 254 | <configuration> |
| 255 | <mainClass>org.onap.so.apihandlerinfra.ApiHandlerApplication</mainClass> |
| 256 | </configuration> |
| 257 | <executions> |
| 258 | <execution> |
| 259 | <goals> |
| 260 | <goal>repackage</goal> |
| 261 | </goals> |
| 262 | </execution> |
| 263 | </executions> |
| 264 | </plugin> |
| 265 | <plugin> |
| 266 | <groupId>org.apache.maven.plugins</groupId> |
| 267 | <artifactId>maven-dependency-plugin</artifactId> |
| 268 | <executions> |
| 269 | <execution> |
| 270 | <id>extract-docker-file</id> |
| 271 | </execution> |
| 272 | </executions> |
| 273 | </plugin> |
| 274 | <plugin> |
| 275 | <groupId>org.apache.maven.plugins</groupId> |
| 276 | <artifactId>maven-jar-plugin</artifactId> |
| 277 | <executions> |
| 278 | <execution> |
| 279 | <id>original</id> |
| 280 | </execution> |
| 281 | </executions> |
| 282 | </plugin> |
| 283 | <plugin> |
| 284 | <groupId>io.fabric8</groupId> |
| 285 | <artifactId>fabric8-maven-plugin</artifactId> |
| 286 | <executions> |
| 287 | <execution> |
| 288 | <id>start</id> |
| 289 | </execution> |
| 290 | </executions> |
| 291 | </plugin> |
| 292 | </plugins> |
| 293 | </build> |
| 294 | <packaging>jar</packaging> |
Rob Daugherty | db566f4 | 2018-09-11 22:29:08 -0400 | [diff] [blame] | 295 | </project> |