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" |
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> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>adapters</artifactId> |
| 7 | <version>1.4.0-SNAPSHOT</version> |
| 8 | </parent> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 9 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 10 | <groupId>org.onap.so.adapters</groupId> |
| 11 | <artifactId>mso-catalog-db-adapter</artifactId> |
| 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> |
Arindam Mondal | ba997d7 | 2019-09-11 15:13:04 +0900 | [diff] [blame] | 17 | <swagger.version>2.0.8</swagger.version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 18 | </properties> |
| 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.springframework.boot</groupId> |
| 23 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 24 | <version>${springboot.version}</version> |
| 25 | <configuration> |
| 26 | <mainClass>org.onap.so.adapters.catalogdb.CatalogDBApplication</mainClass> |
| 27 | </configuration> |
| 28 | <executions> |
| 29 | <execution> |
| 30 | <goals> |
| 31 | <goal>repackage</goal> |
| 32 | </goals> |
| 33 | </execution> |
| 34 | </executions> |
| 35 | </plugin> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-dependency-plugin</artifactId> |
| 39 | <executions> |
| 40 | <execution> |
| 41 | <id>extract-docker-file</id> |
| 42 | </execution> |
| 43 | </executions> |
| 44 | </plugin> |
| 45 | <plugin> |
| 46 | <groupId>io.fabric8</groupId> |
| 47 | <artifactId>fabric8-maven-plugin</artifactId> |
| 48 | <executions> |
| 49 | <execution> |
| 50 | <id>start</id> |
| 51 | </execution> |
| 52 | </executions> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-compiler-plugin</artifactId> |
| 57 | <version>3.3</version> |
| 58 | <configuration> |
| 59 | <source>1.8</source> |
| 60 | <target>1.8</target> |
| 61 | <fork>true</fork> |
| 62 | <compilerArgs> |
| 63 | <arg>-parameters</arg> |
| 64 | </compilerArgs> |
| 65 | </configuration> |
| 66 | </plugin> |
| 67 | <plugin> |
| 68 | <groupId>org.apache.maven.plugins</groupId> |
| 69 | <artifactId>maven-surefire-plugin</artifactId> |
| 70 | <executions> |
| 71 | <execution> |
| 72 | <id>default-test</id> |
| 73 | <goals> |
| 74 | <goal>test</goal> |
| 75 | </goals> |
| 76 | <configuration> |
| 77 | <includes> |
| 78 | <include>**/AllTestsTestSuite.java</include> |
| 79 | </includes> |
| 80 | <parallel>suites</parallel> |
| 81 | </configuration> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | <pluginManagement> |
| 87 | <plugins> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 88 | <plugin> |
| 89 | <groupId>org.jacoco</groupId> |
| 90 | <artifactId>jacoco-maven-plugin</artifactId> |
| 91 | </plugin> |
| 92 | </plugins> |
| 93 | </pluginManagement> |
| 94 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 95 | </build> |
| 96 | <dependencyManagement> |
| 97 | <dependencies> |
| 98 | <dependency> |
| 99 | <!-- Import dependency management from Spring Boot --> |
| 100 | <groupId>org.springframework.boot</groupId> |
| 101 | <artifactId>spring-boot-dependencies</artifactId> |
| 102 | <version>${springboot.version}</version> |
| 103 | <type>pom</type> |
| 104 | <scope>import</scope> |
| 105 | </dependency> |
| 106 | </dependencies> |
| 107 | </dependencyManagement> |
| 108 | <dependencies> |
| 109 | <dependency> |
| 110 | <groupId>org.springframework.boot</groupId> |
| 111 | <artifactId>spring-boot-starter-web</artifactId> |
| 112 | </dependency> |
Arindam Mondal | ba997d7 | 2019-09-11 15:13:04 +0900 | [diff] [blame] | 113 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 114 | <dependency> |
Arindam Mondal | ba997d7 | 2019-09-11 15:13:04 +0900 | [diff] [blame] | 115 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 116 | <artifactId>jackson-dataformat-yaml</artifactId> |
| 117 | <version>2.9.9</version> |
| 118 | </dependency> |
| 119 | |
| 120 | <dependency> |
| 121 | <groupId>io.swagger.core.v3</groupId> |
| 122 | <artifactId>swagger-annotations</artifactId> |
| 123 | <version>${swagger.version}</version> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>io.swagger.core.v3</groupId> |
| 127 | <artifactId>swagger-jaxrs2</artifactId> |
| 128 | <version>2.0.6</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>org.mariadb.jdbc</groupId> |
| 132 | <artifactId>mariadb-java-client</artifactId> |
| 133 | </dependency> |
| 134 | <dependency> |
| 135 | <groupId>org.springframework.boot</groupId> |
| 136 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 137 | </dependency> |
| 138 | <dependency> |
| 139 | <groupId>org.springframework.boot</groupId> |
| 140 | <artifactId>spring-boot-starter-jersey</artifactId> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>org.springframework.boot</groupId> |
| 144 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 145 | <exclusions> |
| 146 | <exclusion> |
| 147 | <groupId>org.apache.tomcat</groupId> |
| 148 | <artifactId>tomcat-jdbc</artifactId> |
| 149 | </exclusion> |
| 150 | </exclusions> |
| 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> |
| 159 | <artifactId>mso-catalog-db</artifactId> |
| 160 | <version>${project.version}</version> |
| 161 | </dependency> |
| 162 | <dependency> |
| 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> |
| 175 | <artifactId>flyway-core</artifactId> |
| 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>io.micrometer</groupId> |
| 179 | <artifactId>micrometer-core</artifactId> |
| 180 | </dependency> |
| 181 | <dependency> |
| 182 | <groupId>io.micrometer</groupId> |
| 183 | <artifactId>micrometer-registry-prometheus</artifactId> |
| 184 | </dependency> |
| 185 | </dependencies> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 186 | </project> |