wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.onap.oparent</groupId> |
| 7 | <artifactId>oparent</artifactId> |
| 8 | <version>1.2.1</version> |
| 9 | <relativePath/> |
| 10 | </parent> |
| 11 | |
| 12 | <groupId>org.onap.dcaegen2.services</groupId> |
| 13 | <artifactId>sdk</artifactId> |
| 14 | <version>1.0.0-SNAPSHOT</version> |
| 15 | |
| 16 | <name>dcaegen2-services-sdk</name> |
| 17 | <description>Common SDK repo for all DCAE Services (R4)</description> |
| 18 | <packaging>pom</packaging> |
| 19 | |
| 20 | <licenses> |
| 21 | <license> |
| 22 | <name>The Apache Software License, Version 2.0</name> |
| 23 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 24 | </license> |
| 25 | </licenses> |
| 26 | |
| 27 | <properties> |
| 28 | <java.version>8</java.version> |
| 29 | <junit-jupiter.version>5.3.1</junit-jupiter.version> |
| 30 | <junit-vintage.version>5.3.1</junit-vintage.version> |
| 31 | <junit-platform.version>1.3.1</junit-platform.version> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 32 | <immutables.version>2.7.3</immutables.version> |
| 33 | <spring.version>5.1.2.RELEASE</spring.version> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 34 | <spring.boot.version>2.1.0.RELEASE</spring.boot.version> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 35 | <slf4j.version>1.7.25</slf4j.version> |
pwielebs | b9f6585 | 2018-11-20 16:46:32 +0100 | [diff] [blame] | 36 | <mockito.version>2.16.0</mockito.version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 37 | </properties> |
| 38 | |
| 39 | <modules> |
| 40 | <module>rest-services</module> |
| 41 | </modules> |
| 42 | |
| 43 | <build> |
| 44 | <pluginManagement> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.maven.plugins</groupId> |
| 48 | <artifactId>maven-resources-plugin</artifactId> |
Marcin Migdal | 1bdf0c6 | 2018-12-07 14:34:49 +0100 | [diff] [blame] | 49 | <version>3.1.0</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 50 | <configuration> |
| 51 | <encoding>${project.build.sourceEncoding}</encoding> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | <plugin> |
| 55 | <groupId>org.apache.maven.plugins</groupId> |
| 56 | <artifactId>maven-compiler-plugin</artifactId> |
| 57 | <version>3.8.0</version> |
| 58 | <configuration> |
| 59 | <source>${java.version}</source> |
| 60 | <target>${java.version}</target> |
| 61 | <encoding>${project.build.sourceEncoding}</encoding> |
| 62 | <showWarnings>true</showWarnings> |
| 63 | <showDeprecation>true</showDeprecation> |
| 64 | </configuration> |
| 65 | </plugin> |
| 66 | <plugin> |
| 67 | <groupId>org.apache.maven.plugins</groupId> |
| 68 | <artifactId>maven-surefire-plugin</artifactId> |
| 69 | <version>2.22.1</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 70 | </plugin> |
| 71 | <plugin> |
| 72 | <artifactId>maven-javadoc-plugin</artifactId> |
| 73 | <version>3.0.1</version> |
| 74 | </plugin> |
| 75 | <plugin> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 76 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 77 | <version>2.9</version> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </pluginManagement> |
| 81 | <plugins> |
| 82 | <plugin> |
| 83 | <artifactId>maven-javadoc-plugin</artifactId> |
| 84 | <configuration> |
| 85 | <!-- minimize console output messages --> |
| 86 | <quiet>true</quiet> |
| 87 | <verbose>false</verbose> |
| 88 | <useStandardDocletOptions>false</useStandardDocletOptions> |
| 89 | </configuration> |
| 90 | <executions> |
| 91 | <execution> |
| 92 | <id>aggregate</id> |
| 93 | <phase>site</phase> |
| 94 | <goals> |
| 95 | <goal>aggregate</goal> |
| 96 | </goals> |
| 97 | </execution> |
| 98 | <execution> |
| 99 | <id>attach-javadoc</id> |
| 100 | <goals> |
| 101 | <goal>jar</goal> |
| 102 | </goals> |
| 103 | </execution> |
| 104 | </executions> |
| 105 | </plugin> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 106 | </plugins> |
| 107 | </build> |
| 108 | <reporting> |
| 109 | <plugins> |
| 110 | <plugin> |
| 111 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 112 | <reportSets> |
| 113 | <reportSet> |
| 114 | <reports> |
| 115 | <report>dependencies</report> |
| 116 | <report>license</report> |
| 117 | </reports> |
| 118 | </reportSet> |
| 119 | </reportSets> |
| 120 | </plugin> |
| 121 | </plugins> |
| 122 | </reporting> |
| 123 | |
| 124 | <dependencyManagement> |
| 125 | <dependencies> |
| 126 | <dependency> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 127 | <groupId>org.springframework</groupId> |
| 128 | <artifactId>spring-webflux</artifactId> |
| 129 | <version>${spring.version}</version> |
| 130 | </dependency> |
| 131 | <dependency> |
| 132 | <groupId>org.springframework</groupId> |
pwielebs | b9f6585 | 2018-11-20 16:46:32 +0100 | [diff] [blame] | 133 | <artifactId>spring-web</artifactId> |
| 134 | <version>${spring.version}</version> |
| 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>org.springframework</groupId> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 138 | <artifactId>spring-context</artifactId> |
| 139 | <version>${spring.version}</version> |
| 140 | </dependency> |
| 141 | <dependency> |
pwielebs | b9f6585 | 2018-11-20 16:46:32 +0100 | [diff] [blame] | 142 | <groupId>org.springframework</groupId> |
| 143 | <artifactId>spring-core</artifactId> |
| 144 | <version>${spring.version}</version> |
| 145 | </dependency> |
| 146 | <dependency> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 147 | <groupId>org.springframework.boot</groupId> |
| 148 | <artifactId>spring-boot-starter-reactor-netty</artifactId> |
| 149 | <version>${spring.boot.version}</version> |
| 150 | </dependency> |
| 151 | <dependency> |
| 152 | <groupId>org.springframework.boot</groupId> |
| 153 | <artifactId>spring-boot-starter-web</artifactId> |
| 154 | <version>${spring.boot.version}</version> |
| 155 | </dependency> |
| 156 | <dependency> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 157 | <groupId>org.immutables</groupId> |
| 158 | <artifactId>value</artifactId> |
| 159 | <version>${immutables.version}</version> |
| 160 | <scope>provided</scope> |
| 161 | </dependency> |
| 162 | <dependency> |
| 163 | <groupId>org.immutables</groupId> |
| 164 | <artifactId>gson</artifactId> |
| 165 | <version>${immutables.version}</version> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>ch.qos.logback</groupId> |
| 169 | <artifactId>logback-classic</artifactId> |
| 170 | <scope>provided</scope> |
| 171 | <version>1.2.3</version> |
| 172 | </dependency> |
| 173 | <dependency> |
| 174 | <groupId>org.slf4j</groupId> |
| 175 | <artifactId>jul-to-slf4j</artifactId> |
| 176 | <version>${slf4j.version}</version> |
| 177 | </dependency> |
| 178 | <dependency> |
| 179 | <groupId>org.slf4j</groupId> |
| 180 | <artifactId>log4j-over-slf4j</artifactId> |
| 181 | <version>${slf4j.version}</version> |
| 182 | </dependency> |
| 183 | <dependency> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 184 | <groupId>org.slf4j</groupId> |
| 185 | <artifactId>slf4j-api</artifactId> |
| 186 | <version>${slf4j.version}</version> |
| 187 | </dependency> |
| 188 | <dependency> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 189 | <groupId>org.mockito</groupId> |
| 190 | <artifactId>mockito-core</artifactId> |
pwielebs | b9f6585 | 2018-11-20 16:46:32 +0100 | [diff] [blame] | 191 | <version>${mockito.version}</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 192 | <scope>test</scope> |
| 193 | </dependency> |
| 194 | <dependency> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 195 | <groupId>org.junit.jupiter</groupId> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 196 | <artifactId>junit-jupiter-engine</artifactId> |
| 197 | <version>${junit-jupiter.version}</version> |
| 198 | <scope>test</scope> |
| 199 | </dependency> |
| 200 | <dependency> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 201 | <groupId>io.projectreactor</groupId> |
| 202 | <artifactId>reactor-bom</artifactId> |
| 203 | <version>Californium-SR2</version> |
| 204 | <type>pom</type> |
| 205 | <scope>import</scope> |
| 206 | </dependency> |
pwielebs | b9f6585 | 2018-11-20 16:46:32 +0100 | [diff] [blame] | 207 | <dependency> |
| 208 | <groupId>io.projectreactor.netty</groupId> |
| 209 | <artifactId>reactor-netty</artifactId> |
| 210 | <version>0.8.1.RELEASE</version> |
| 211 | </dependency> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 212 | </dependencies> |
| 213 | </dependencyManagement> |
| 214 | </project> |