xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [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> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [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> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 8 | </parent> |
| 9 | |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 10 | <groupId>org.onap.so.adapters</groupId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 11 | <artifactId>mso-catalog-db-adapter</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 12 | <packaging>jar</packaging> |
| 13 | <properties> |
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 16 | <java.version>1.8</java.version> |
| 17 | </properties> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 18 | <build> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 19 | <plugins> |
| 20 | <plugin> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 21 | <groupId>org.springframework.boot</groupId> |
| 22 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 23 | <version>${springboot.version}</version> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 24 | <configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 25 | <mainClass>org.onap.so.adapters.catalogdb.CatalogDBApplication</mainClass> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 26 | </configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 27 | <executions> |
| 28 | <execution> |
| 29 | <goals> |
| 30 | <goal>repackage</goal> |
| 31 | </goals> |
| 32 | </execution> |
| 33 | </executions> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 34 | </plugin> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 35 | <plugin> |
| 36 | <groupId>org.apache.maven.plugins</groupId> |
| 37 | <artifactId>maven-dependency-plugin</artifactId> |
| 38 | <executions> |
| 39 | <execution> |
| 40 | <id>extract-docker-file</id> |
| 41 | </execution> |
| 42 | </executions> |
| 43 | </plugin> |
| 44 | <plugin> |
| 45 | <groupId>io.fabric8</groupId> |
| 46 | <artifactId>fabric8-maven-plugin</artifactId> |
| 47 | <executions> |
| 48 | <execution> |
| 49 | <id>start</id> |
| 50 | </execution> |
| 51 | </executions> |
| 52 | </plugin> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-compiler-plugin</artifactId> |
| 56 | <version>3.3</version> |
| 57 | <configuration> |
| 58 | <source>1.8</source> |
| 59 | <target>1.8</target> |
| 60 | <fork>true</fork> |
| 61 | <compilerArgs> |
| 62 | <arg>-parameters</arg> |
| 63 | </compilerArgs> |
| 64 | </configuration> |
| 65 | </plugin> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 66 | </plugins> |
| 67 | <pluginManagement> |
| 68 | <plugins> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 69 | <!--This plugin's configuration is used to store Eclipse m2e settings |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 70 | only. It has no influence on the Maven build itself. --> |
| 71 | <plugin> |
| 72 | <groupId>org.eclipse.m2e</groupId> |
| 73 | <artifactId>lifecycle-mapping</artifactId> |
| 74 | <version>1.0.0</version> |
| 75 | <configuration> |
| 76 | <lifecycleMappingMetadata> |
| 77 | <pluginExecutions> |
| 78 | <pluginExecution> |
| 79 | <pluginExecutionFilter> |
| 80 | <groupId> |
| 81 | org.jvnet.jax-ws-commons |
| 82 | </groupId> |
| 83 | <artifactId> |
| 84 | jaxws-maven-plugin |
| 85 | </artifactId> |
| 86 | <versionRange> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 87 | [2.3,) |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 88 | </versionRange> |
| 89 | <goals> |
| 90 | <goal>wsgen</goal> |
| 91 | </goals> |
| 92 | </pluginExecutionFilter> |
| 93 | <action> |
| 94 | <ignore></ignore> |
| 95 | </action> |
| 96 | </pluginExecution> |
| 97 | </pluginExecutions> |
| 98 | </lifecycleMappingMetadata> |
| 99 | </configuration> |
| 100 | </plugin> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 101 | |
| 102 | <plugin> |
| 103 | <groupId>org.jacoco</groupId> |
| 104 | <artifactId>jacoco-maven-plugin</artifactId> |
| 105 | </plugin> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 106 | </plugins> |
| 107 | </pluginManagement> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 108 | <finalName>${project.artifactId}-${project.version}</finalName> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 109 | </build> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 110 | <dependencyManagement> |
| 111 | <dependencies> |
| 112 | <dependency> |
| 113 | <!-- Import dependency management from Spring Boot --> |
| 114 | <groupId>org.springframework.boot</groupId> |
| 115 | <artifactId>spring-boot-dependencies</artifactId> |
| 116 | <version>${springboot.version}</version> |
| 117 | <type>pom</type> |
| 118 | <scope>import</scope> |
| 119 | </dependency> |
| 120 | </dependencies> |
| 121 | </dependencyManagement> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 122 | <dependencies> |
| 123 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 124 | <groupId>org.springframework.boot</groupId> |
| 125 | <artifactId>spring-boot-starter-web</artifactId> |
| 126 | </dependency> |
| 127 | <dependency> |
| 128 | <groupId>org.springframework.boot</groupId> |
| 129 | <artifactId>spring-boot-starter-jdbc</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>io.swagger</groupId> |
| 133 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 134 | <version>1.5.16</version> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>org.mariadb.jdbc</groupId> |
| 138 | <artifactId>mariadb-java-client</artifactId> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.springframework.boot</groupId> |
| 142 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 143 | </dependency> |
| 144 | <dependency> |
| 145 | <groupId>org.springframework.boot</groupId> |
| 146 | <artifactId>spring-boot-starter-jersey</artifactId> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>org.springframework.boot</groupId> |
| 150 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 151 | </dependency> |
| 152 | <dependency> |
| 153 | <groupId>org.springframework.boot</groupId> |
| 154 | <artifactId>spring-boot-starter-test</artifactId> |
| 155 | <scope>test</scope> |
| 156 | </dependency> |
| 157 | <dependency> |
| 158 | <groupId>org.onap.so</groupId> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 159 | <artifactId>mso-catalog-db</artifactId> |
| 160 | <version>${project.version}</version> |
| 161 | </dependency> |
Arthur Martella | e371d75 | 2017-10-02 11:03:02 -0400 | [diff] [blame] | 162 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 163 | <groupId>uk.co.blackpepper.bowman</groupId> |
| 164 | <artifactId>bowman-client</artifactId> |
| 165 | <version>0.3.0</version> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 169 | <artifactId>mariaDB4j</artifactId> |
| 170 | <version>2.2.3</version> |
| 171 | <scope>test</scope> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>org.flywaydb</groupId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 175 | <artifactId>flyway-core</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>io.micrometer</groupId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 179 | <artifactId>micrometer-core</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>io.micrometer</groupId> |
| 183 | <artifactId>micrometer-registry-prometheus</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 184 | </dependency> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame^] | 185 | </dependencies> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 186 | </project> |