aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authormicdzied <michal.1.dziedzic@nokia.com>2018-11-27 11:28:45 +0100
committermicdzied <michal.1.dziedzic@nokia.com>2018-11-29 09:09:52 +0100
commit346105ffbbbfd785c47161019326aa88e6b9bfb6 (patch)
tree7da22b4f092b9a6a3dd1f2765ad940891024708a /pom.xml
parentb9f65858446ee35a652db53bbca20cc572857116 (diff)
add dmaap client module
Change-Id: I443a6e8be3b8a6897fc73dc8f1511772ec1d8833 Issue-ID: DCAEGEN2-994 Signed-off-by: micdzied <michal.1.dziedzic@nokia.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index dd20f23b..97ee7571 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,6 +31,7 @@
<junit-platform.version>1.3.1</junit-platform.version>
<immutables.version>2.7.3</immutables.version>
<spring.version>5.1.2.RELEASE</spring.version>
+ <spring.boot.version>2.1.0.RELEASE</spring.boot.version>
<slf4j.version>1.7.25</slf4j.version>
<mockito.version>2.16.0</mockito.version>
</properties>
@@ -177,6 +178,16 @@
<version>${spring.version}</version>
</dependency>
<dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-reactor-netty</artifactId>
+ <version>${spring.boot.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-web</artifactId>
+ <version>${spring.boot.version}</version>
+ </dependency>
+ <dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>${immutables.version}</version>
@@ -204,6 +215,11 @@
<version>${slf4j.version}</version>
</dependency>
<dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>${slf4j.version}</version>
+ </dependency>
+ <dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>