wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
| 7 | <parent> |
| 8 | <groupId>org.onap.dcaegen2.services.sdk</groupId> |
| 9 | <artifactId>dcaegen2-services-sdk-rest-services</artifactId> |
pwielebs | 336d71e | 2018-12-12 16:36:04 +0100 | [diff] [blame^] | 10 | <version>1.1.0-SNAPSHOT</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 11 | <relativePath>../pom.xml</relativePath> |
| 12 | </parent> |
wasala | ec06ba4 | 2018-11-16 15:08:25 +0100 | [diff] [blame] | 13 | |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 14 | <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId> |
| 15 | <artifactId>dmaap-client</artifactId> |
pwielebs | 336d71e | 2018-12-12 16:36:04 +0100 | [diff] [blame^] | 16 | <version>1.1.0-SNAPSHOT</version> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 17 | |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 18 | <name>dcaegen2-services-sdk-rest-services-dmaap-client</name> |
| 19 | <description>DMaaP Rest Services Module</description> |
| 20 | <packaging>jar</packaging> |
| 21 | |
| 22 | <dependencies> |
| 23 | <dependency> |
Marcin Migdal | 75fca44 | 2018-12-07 17:17:54 +0100 | [diff] [blame] | 24 | <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId> |
| 25 | <artifactId>common-dependency</artifactId> |
pwielebs | 336d71e | 2018-12-12 16:36:04 +0100 | [diff] [blame^] | 26 | <version>1.1.0-SNAPSHOT</version> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 27 | </dependency> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 28 | <dependency> |
| 29 | <groupId>org.springframework</groupId> |
| 30 | <artifactId>spring-context</artifactId> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>org.springframework</groupId> |
| 34 | <artifactId>spring-webflux</artifactId> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.springframework.boot</groupId> |
| 38 | <artifactId>spring-boot-starter-reactor-netty</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.springframework.boot</groupId> |
| 42 | <artifactId>spring-boot-starter-web</artifactId> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.httpcomponents</groupId> |
| 46 | <artifactId>httpclient</artifactId> |
| 47 | </dependency> |
| 48 | <dependency> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 49 | <groupId>org.slf4j</groupId> |
| 50 | <artifactId>slf4j-api</artifactId> |
| 51 | </dependency> |
Marcin Migdal | 307e825 | 2018-12-07 15:52:53 +0100 | [diff] [blame] | 52 | |
| 53 | <dependency> |
| 54 | <groupId>org.junit.jupiter</groupId> |
| 55 | <artifactId>junit-jupiter-engine</artifactId> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 59 | <groupId>io.projectreactor</groupId> |
| 60 | <artifactId>reactor-test</artifactId> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
Marcin Migdal | 307e825 | 2018-12-07 15:52:53 +0100 | [diff] [blame] | 64 | <groupId>org.mockito</groupId> |
| 65 | <artifactId>mockito-core</artifactId> |
| 66 | <scope>test</scope> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId> |
| 70 | <artifactId>aai-client</artifactId> |
pwielebs | 336d71e | 2018-12-12 16:36:04 +0100 | [diff] [blame^] | 71 | <version>1.1.0-SNAPSHOT</version> |
micdzied | 346105f | 2018-11-27 11:28:45 +0100 | [diff] [blame] | 72 | <scope>test</scope> |
| 73 | </dependency> |
wasala | 7b0c16b | 2018-11-14 12:07:35 +0100 | [diff] [blame] | 74 | </dependencies> |
| 75 | </project> |