Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [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> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 6 | <artifactId>so</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 7 | <version>1.3.0-SNAPSHOT</version> |
| 8 | </parent> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 9 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 10 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 11 | <artifactId>asdc-controller</artifactId> |
| 12 | <name>asdc-controller</name> |
| 13 | <description>ASDC CLient and Controller</description> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 14 | <properties> |
| 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 17 | <antlr.version>4.7.1</antlr.version> |
| 18 | <java.version>1.8</java.version> |
| 19 | </properties> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 20 | |
| 21 | <build> |
| 22 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 23 | <plugins> |
| 24 | <plugin> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 25 | <groupId>org.jacoco</groupId> |
| 26 | <artifactId>jacoco-maven-plugin</artifactId> |
| 27 | <version>0.7.7.201606060606</version> |
| 28 | <configuration> |
| 29 | <excludes> |
| 30 | + <exclude>**/resource-examples/**</exclude> |
| 31 | </excludes> |
| 32 | </configuration> |
| 33 | <executions> |
| 34 | <execution> |
| 35 | <id>default-prepare-agent</id> |
| 36 | <goals> |
| 37 | <goal>prepare-agent</goal> |
| 38 | </goals> |
| 39 | </execution> |
| 40 | <execution> |
| 41 | <id>default-report</id> |
| 42 | <goals> |
| 43 | <goal>report</goal> |
| 44 | </goals> |
| 45 | </execution> |
| 46 | <execution> |
| 47 | <id>default-check</id> |
| 48 | <goals> |
| 49 | <goal>check</goal> |
| 50 | </goals> |
| 51 | <configuration> |
| 52 | <rules> |
| 53 | <rule implementation="org.jacoco.maven.RuleConfiguration"> |
| 54 | <element>BUNDLE</element> |
| 55 | <limits> |
| 56 | <limit implementation="org.jacoco.report.check.Limit"> |
| 57 | <counter>INSTRUCTION</counter> |
| 58 | <value>COVEREDRATIO</value> |
| 59 | </limit> |
| 60 | </limits> |
| 61 | </rule> |
| 62 | </rules> |
| 63 | </configuration> |
| 64 | </execution> |
| 65 | </executions> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <groupId>org.antlr</groupId> |
| 69 | <artifactId>antlr4-maven-plugin</artifactId> |
| 70 | <version>${antlr.version}</version> |
| 71 | <executions> |
| 72 | <execution> |
| 73 | <id>antlr</id> |
| 74 | <phase>generate-test-resources</phase> |
| 75 | <goals> |
| 76 | <goal>antlr4</goal> |
| 77 | </goals> |
| 78 | <configuration> |
| 79 | <visitor>true</visitor> |
| 80 | <outputDirectory>${project.build.directory}/generated-sources</outputDirectory> |
| 81 | </configuration> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | <plugin> |
| 86 | <artifactId>maven-compiler-plugin</artifactId> |
| 87 | <executions> |
| 88 | <execution> |
| 89 | <id>default-testCompile</id> |
| 90 | <phase>test-compile</phase> |
| 91 | <goals> |
| 92 | <goal>testCompile</goal> |
| 93 | </goals> |
| 94 | <configuration> |
| 95 | <generatedTestSourcesDirectory>${project.build.directory}/generated-sources</generatedTestSourcesDirectory> |
| 96 | </configuration> |
| 97 | </execution> |
| 98 | </executions> |
| 99 | </plugin> |
| 100 | <plugin> |
| 101 | <groupId>org.springframework.boot</groupId> |
| 102 | <artifactId>spring-boot-maven-plugin</artifactId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 103 | <configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 104 | <mainClass>org.onap.so.asdc.Application</mainClass> |
| 105 | </configuration> |
| 106 | <executions> |
| 107 | <execution> |
| 108 | <goals> |
| 109 | <goal>repackage</goal> |
| 110 | </goals> |
| 111 | </execution> |
| 112 | </executions> |
| 113 | </plugin> |
| 114 | <plugin> |
| 115 | <groupId>org.apache.maven.plugins</groupId> |
| 116 | <artifactId>maven-dependency-plugin</artifactId> |
| 117 | <executions> |
| 118 | <execution> |
| 119 | <id>extract-docker-file</id> |
| 120 | </execution> |
| 121 | </executions> |
| 122 | </plugin> |
| 123 | <plugin> |
| 124 | <groupId>io.fabric8</groupId> |
| 125 | <artifactId>fabric8-maven-plugin</artifactId> |
| 126 | <executions> |
| 127 | <execution> |
| 128 | <id>start</id> |
| 129 | </execution> |
| 130 | </executions> |
| 131 | </plugin> |
| 132 | <plugin> |
| 133 | <groupId>org.apache.maven.plugins</groupId> |
| 134 | <artifactId>maven-jar-plugin</artifactId> |
| 135 | <executions> |
| 136 | <execution> |
| 137 | <id>original</id> |
| 138 | </execution> |
| 139 | </executions> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 140 | </plugin> |
| 141 | </plugins> |
| 142 | </build> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 143 | <dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 144 | <dependency> |
| 145 | <groupId>org.springframework.boot</groupId> |
| 146 | <artifactId>spring-boot-starter-web</artifactId> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>io.swagger</groupId> |
| 150 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 151 | <version>1.5.16</version> |
| 152 | </dependency> |
| 153 | <dependency> |
| 154 | <groupId>com.h2database</groupId> |
| 155 | <artifactId>h2</artifactId> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>org.springframework.boot</groupId> |
| 159 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 160 | </dependency> |
| 161 | <dependency> |
| 162 | <groupId>org.springframework.boot</groupId> |
| 163 | <artifactId>spring-boot-starter-jersey</artifactId> |
| 164 | </dependency> |
| 165 | <dependency> |
| 166 | <groupId>org.springframework.boot</groupId> |
| 167 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 168 | <exclusions> |
| 169 | <exclusion> |
| 170 | <groupId>org.apache.tomcat</groupId> |
| 171 | <artifactId>tomcat-jdbc</artifactId> |
| 172 | </exclusion> |
| 173 | </exclusions> |
| 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>org.springframework.boot</groupId> |
| 177 | <artifactId>spring-boot-starter-test</artifactId> |
| 178 | <scope>test</scope> |
| 179 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 180 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 181 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 182 | <artifactId>mso-catalog-db</artifactId> |
| 183 | <version>${project.version}</version> |
| 184 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 185 | <dependency> |
Rob Daugherty | b4473da | 2018-03-27 14:32:11 -0400 | [diff] [blame] | 186 | <groupId>org.onap.sdc.sdc-distribution-client</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 187 | <artifactId>sdc-distribution-client</artifactId> |
Rob Daugherty | b4473da | 2018-03-27 14:32:11 -0400 | [diff] [blame] | 188 | <version>1.3.0</version> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 189 | <exclusions> |
| 190 | <exclusion> |
| 191 | <groupId>org.slf4j</groupId> |
| 192 | <artifactId>slf4j-log4j12</artifactId> |
| 193 | </exclusion> |
| 194 | </exclusions> |
| 195 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 196 | <dependency> |
Rob Daugherty | b4473da | 2018-03-27 14:32:11 -0400 | [diff] [blame] | 197 | <groupId>org.onap.sdc.sdc-tosca</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 198 | <artifactId>sdc-tosca</artifactId> |
Benjamin, Max (mb388a) | 032c4e3 | 2018-09-08 16:04:51 -0400 | [diff] [blame] | 199 | <version>1.3.5</version> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 200 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 201 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 202 | <groupId>org.onap.sdc.jtosca</groupId> |
| 203 | <artifactId>jtosca</artifactId> |
Benjamin, Max (mb388a) | 032c4e3 | 2018-09-08 16:04:51 -0400 | [diff] [blame] | 204 | <version>1.3.5</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 205 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 206 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 207 | <groupId>org.onap.so</groupId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 208 | <artifactId>common</artifactId> |
| 209 | <version>${project.version}</version> |
| 210 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 211 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 212 | <groupId>org.onap.so</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 213 | <artifactId>mso-api-handler-common</artifactId> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 214 | <version>${project.version}</version> |
| 215 | </dependency> |
| 216 | <dependency> |
| 217 | <groupId>commons-io</groupId> |
| 218 | <artifactId>commons-io</artifactId> |
| 219 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 220 | <dependency> |
| 221 | <groupId>org.onap.so</groupId> |
| 222 | <artifactId>mso-requests-db</artifactId> |
| 223 | <version>${project.version}</version> |
Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [diff] [blame^] | 224 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 225 | <dependency> |
Benjamin, Max (mb388a) | dfdb5a1 | 2018-09-10 09:28:05 -0400 | [diff] [blame^] | 226 | <groupId>org.onap.so</groupId> |
| 227 | <artifactId>mso-requests-db-repositories</artifactId> |
| 228 | <version>${project.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 229 | </dependency> |
| 230 | <dependency> |
| 231 | <groupId>org.antlr</groupId> |
| 232 | <artifactId>antlr4</artifactId> |
| 233 | <version>${antlr.version}</version> |
| 234 | <scope>test</scope> |
| 235 | </dependency> |
| 236 | <dependency> |
| 237 | <groupId>org.springframework.boot</groupId> |
| 238 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 239 | <optional>true</optional> |
| 240 | </dependency> |
| 241 | <dependency> |
| 242 | <groupId>org.mariadb.jdbc</groupId> |
| 243 | <artifactId>mariadb-java-client</artifactId> |
| 244 | </dependency> |
| 245 | <dependency> |
| 246 | <groupId>org.apache.commons</groupId> |
| 247 | <artifactId>commons-dbcp2</artifactId> |
| 248 | </dependency> |
| 249 | <dependency> |
| 250 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 251 | <artifactId>mariaDB4j</artifactId> |
| 252 | <version>2.2.3</version> |
| 253 | <scope>test</scope> |
| 254 | </dependency> |
| 255 | <dependency> |
| 256 | <groupId>org.springframework.cloud</groupId> |
| 257 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 258 | <version>1.2.4.RELEASE</version> |
| 259 | </dependency> |
| 260 | <dependency> |
| 261 | <groupId>io.micrometer</groupId> |
| 262 | <artifactId>micrometer-spring-legacy</artifactId> |
| 263 | <version>1.0.5</version> |
| 264 | </dependency> |
| 265 | <dependency> |
| 266 | <groupId>io.micrometer</groupId> |
| 267 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 268 | <version>1.0.5</version> |
| 269 | </dependency> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 270 | </dependencies> |
Seshu-Kumar-M | cce429a | 2017-10-06 20:31:35 +0800 | [diff] [blame] | 271 | </project> |