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> |
Piotr Jaszczyk | 41fddf5 | 2019-01-09 15:08:46 +0100 | [diff] [blame] | 14 | <version>1.1.1-SNAPSHOT</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 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> |
Piotr Jaszczyk | 41fddf5 | 2019-01-09 15:08:46 +0100 | [diff] [blame] | 33 | <spring.version>5.1.3.RELEASE</spring.version> |
| 34 | <spring.boot.version>2.1.1.RELEASE</spring.boot.version> |
| 35 | <reactor.bom.version>Californium-SR3</reactor.bom.version> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 36 | <slf4j.version>1.7.25</slf4j.version> |
Piotr Jaszczyk | 41fddf5 | 2019-01-09 15:08:46 +0100 | [diff] [blame] | 37 | <logback.version>1.2.3</logback.version> |
| 38 | <mockito.version>2.23.4</mockito.version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 39 | </properties> |
| 40 | |
| 41 | <modules> |
| 42 | <module>rest-services</module> |
Piotr Jaszczyk | 41fddf5 | 2019-01-09 15:08:46 +0100 | [diff] [blame] | 43 | <module>services</module> |
Zlatko Murgoski | 2cf4d3c | 2018-12-13 12:23:30 +0100 | [diff] [blame] | 44 | <module>security</module> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 45 | </modules> |
| 46 | |
| 47 | <build> |
| 48 | <pluginManagement> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-resources-plugin</artifactId> |
Marcin Migdal | 1bdf0c6 | 2018-12-07 14:34:49 +0100 | [diff] [blame] | 53 | <version>3.1.0</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 54 | <configuration> |
| 55 | <encoding>${project.build.sourceEncoding}</encoding> |
| 56 | </configuration> |
| 57 | </plugin> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.maven.plugins</groupId> |
| 60 | <artifactId>maven-compiler-plugin</artifactId> |
| 61 | <version>3.8.0</version> |
| 62 | <configuration> |
| 63 | <source>${java.version}</source> |
| 64 | <target>${java.version}</target> |
| 65 | <encoding>${project.build.sourceEncoding}</encoding> |
| 66 | <showWarnings>true</showWarnings> |
| 67 | <showDeprecation>true</showDeprecation> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | <plugin> |
| 71 | <groupId>org.apache.maven.plugins</groupId> |
| 72 | <artifactId>maven-surefire-plugin</artifactId> |
| 73 | <version>2.22.1</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 74 | </plugin> |
| 75 | <plugin> |
| 76 | <artifactId>maven-javadoc-plugin</artifactId> |
| 77 | <version>3.0.1</version> |
| 78 | </plugin> |
| 79 | <plugin> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 80 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 81 | <version>2.9</version> |
| 82 | </plugin> |
| 83 | </plugins> |
| 84 | </pluginManagement> |
| 85 | <plugins> |
| 86 | <plugin> |
| 87 | <artifactId>maven-javadoc-plugin</artifactId> |
| 88 | <configuration> |
| 89 | <!-- minimize console output messages --> |
| 90 | <quiet>true</quiet> |
| 91 | <verbose>false</verbose> |
| 92 | <useStandardDocletOptions>false</useStandardDocletOptions> |
| 93 | </configuration> |
| 94 | <executions> |
| 95 | <execution> |
| 96 | <id>aggregate</id> |
| 97 | <phase>site</phase> |
| 98 | <goals> |
| 99 | <goal>aggregate</goal> |
| 100 | </goals> |
| 101 | </execution> |
| 102 | <execution> |
| 103 | <id>attach-javadoc</id> |
| 104 | <goals> |
| 105 | <goal>jar</goal> |
| 106 | </goals> |
| 107 | </execution> |
| 108 | </executions> |
| 109 | </plugin> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 110 | </plugins> |
| 111 | </build> |
| 112 | <reporting> |
| 113 | <plugins> |
| 114 | <plugin> |
| 115 | <artifactId>maven-project-info-reports-plugin</artifactId> |
| 116 | <reportSets> |
| 117 | <reportSet> |
| 118 | <reports> |
| 119 | <report>dependencies</report> |
| 120 | <report>license</report> |
| 121 | </reports> |
| 122 | </reportSet> |
| 123 | </reportSets> |
| 124 | </plugin> |
| 125 | </plugins> |
| 126 | </reporting> |
| 127 | |
| 128 | <dependencyManagement> |
| 129 | <dependencies> |
| 130 | <dependency> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 131 | <groupId>org.springframework</groupId> |
| 132 | <artifactId>spring-webflux</artifactId> |
| 133 | <version>${spring.version}</version> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.springframework</groupId> |
pwielebs | b9f6585 | 2018-11-20 16:46:32 +0100 | [diff] [blame] | 137 | <artifactId>spring-web</artifactId> |
| 138 | <version>${spring.version}</version> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.springframework</groupId> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 142 | <artifactId>spring-context</artifactId> |
| 143 | <version>${spring.version}</version> |
| 144 | </dependency> |
| 145 | <dependency> |
pwielebs | b9f6585 | 2018-11-20 16:46:32 +0100 | [diff] [blame] | 146 | <groupId>org.springframework</groupId> |
| 147 | <artifactId>spring-core</artifactId> |
| 148 | <version>${spring.version}</version> |
| 149 | </dependency> |
| 150 | <dependency> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 151 | <groupId>org.springframework.boot</groupId> |
| 152 | <artifactId>spring-boot-starter-reactor-netty</artifactId> |
| 153 | <version>${spring.boot.version}</version> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>org.springframework.boot</groupId> |
| 157 | <artifactId>spring-boot-starter-web</artifactId> |
| 158 | <version>${spring.boot.version}</version> |
| 159 | </dependency> |
Marcin Migdal | 56b9225 | 2018-12-11 13:50:13 +0100 | [diff] [blame] | 160 | |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 161 | <dependency> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 162 | <groupId>org.immutables</groupId> |
| 163 | <artifactId>value</artifactId> |
| 164 | <version>${immutables.version}</version> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>org.immutables</groupId> |
| 168 | <artifactId>gson</artifactId> |
| 169 | <version>${immutables.version}</version> |
| 170 | </dependency> |
| 171 | <dependency> |
| 172 | <groupId>ch.qos.logback</groupId> |
| 173 | <artifactId>logback-classic</artifactId> |
Piotr Jaszczyk | 41fddf5 | 2019-01-09 15:08:46 +0100 | [diff] [blame] | 174 | <version>${logback.version}</version> |
| 175 | <scope>runtime</scope> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 176 | </dependency> |
| 177 | <dependency> |
| 178 | <groupId>org.slf4j</groupId> |
| 179 | <artifactId>jul-to-slf4j</artifactId> |
| 180 | <version>${slf4j.version}</version> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.slf4j</groupId> |
| 184 | <artifactId>log4j-over-slf4j</artifactId> |
| 185 | <version>${slf4j.version}</version> |
| 186 | </dependency> |
| 187 | <dependency> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 188 | <groupId>org.slf4j</groupId> |
| 189 | <artifactId>slf4j-api</artifactId> |
| 190 | <version>${slf4j.version}</version> |
Piotr Jaszczyk | 41fddf5 | 2019-01-09 15:08:46 +0100 | [diff] [blame] | 191 | <scope>compile</scope> |
Marcin Migdal | 75fca44 | 2018-12-07 17:17:54 +0100 | [diff] [blame] | 192 | </dependency> |
| 193 | <dependency> |
| 194 | <groupId>io.projectreactor</groupId> |
| 195 | <artifactId>reactor-bom</artifactId> |
Piotr Jaszczyk | 41fddf5 | 2019-01-09 15:08:46 +0100 | [diff] [blame] | 196 | <version>${reactor.bom.version}</version> |
Marcin Migdal | 75fca44 | 2018-12-07 17:17:54 +0100 | [diff] [blame] | 197 | <type>pom</type> |
| 198 | <scope>import</scope> |
| 199 | </dependency> |
Marcin Migdal | 75fca44 | 2018-12-07 17:17:54 +0100 | [diff] [blame] | 200 | <dependency> |
Piotr Jaszczyk | e31a789 | 2019-01-11 14:22:08 +0100 | [diff] [blame^] | 201 | <groupId>org.jetbrains</groupId> |
| 202 | <artifactId>annotations</artifactId> |
| 203 | <version>16.0.3</version> |
| 204 | </dependency> |
| 205 | <dependency> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 206 | <groupId>org.mockito</groupId> |
| 207 | <artifactId>mockito-core</artifactId> |
pwielebs | b9f6585 | 2018-11-20 16:46:32 +0100 | [diff] [blame] | 208 | <version>${mockito.version}</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 209 | <scope>test</scope> |
| 210 | </dependency> |
| 211 | <dependency> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 212 | <groupId>org.junit.jupiter</groupId> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 213 | <artifactId>junit-jupiter-engine</artifactId> |
| 214 | <version>${junit-jupiter.version}</version> |
| 215 | <scope>test</scope> |
| 216 | </dependency> |
Piotr Jaszczyk | e31a789 | 2019-01-11 14:22:08 +0100 | [diff] [blame^] | 217 | <dependency> |
| 218 | <groupId>org.assertj</groupId> |
| 219 | <artifactId>assertj-core</artifactId> |
| 220 | <version>3.11.1</version> |
| 221 | <scope>test</scope> |
| 222 | </dependency> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 223 | </dependencies> |
| 224 | </dependencyManagement> |
| 225 | </project> |