aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorMarcin Migdal <marcin.migdal@nokia.com>2019-03-08 13:53:18 +0100
committerMarcin Migdal <marcin.migdal@nokia.com>2019-03-08 13:53:32 +0100
commit186f69f3c3a17e0004ab6771cc5adac6a4722023 (patch)
tree51c3c0d3fd67291c79a506a894c9d91ec8a7ce74 /pom.xml
parent7862f91330ac49c637123db02dd97c5245512195 (diff)
Remove spring at all
Change-Id: I4ed5d037230634ce7677503aab8d2e273f0db693 Issue-ID: DCAEGEN2-1310 Signed-off-by: Marcin Migdal <marcin.migdal@nokia.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml64
1 files changed, 17 insertions, 47 deletions
diff --git a/pom.xml b/pom.xml
index df793702..d81808f7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,13 +30,14 @@
<junit-vintage.version>5.3.1</junit-vintage.version>
<junit-platform.version>1.3.1</junit-platform.version>
<immutables.version>2.7.3</immutables.version>
- <spring.version>5.1.4.RELEASE</spring.version>
- <spring.boot.version>2.1.2.RELEASE</spring.boot.version>
+ <assertj-core.version>3.11.1</assertj-core.version>
<reactor.bom.version>Californium-SR4</reactor.bom.version>
<slf4j.version>1.7.25</slf4j.version>
<logback.version>1.2.3</logback.version>
<mockito.version>2.23.4</mockito.version>
<protobuf.version>3.6.1</protobuf.version>
+ <vavr.version>0.10.0</vavr.version>
+ <jetbrains-annotations.version>16.0.3</jetbrains-annotations.version>
<protoc-jar-maven-plugin.version>3.6.0.2</protoc-jar-maven-plugin.version>
<maven-failsafe-plugin.version>2.22.1</maven-failsafe-plugin.version>
</properties>
@@ -154,61 +155,24 @@
<dependencyManagement>
<dependencies>
<dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webflux</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- <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>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>${protobuf.version}</version>
</dependency>
-
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>${immutables.version}</version>
</dependency>
<dependency>
- <groupId>io.vavr</groupId>
- <artifactId>vavr</artifactId>
- <version>0.10.0</version>
- </dependency>
- <dependency>
<groupId>org.immutables</groupId>
<artifactId>gson</artifactId>
<version>${immutables.version}</version>
</dependency>
<dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>${logback.version}</version>
- <scope>runtime</scope>
+ <groupId>io.vavr</groupId>
+ <artifactId>vavr</artifactId>
+ <version>${vavr.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
@@ -224,7 +188,11 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
- <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jetbrains</groupId>
+ <artifactId>annotations</artifactId>
+ <version>${jetbrains-annotations.version}</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
@@ -234,10 +202,12 @@
<scope>import</scope>
</dependency>
<dependency>
- <groupId>org.jetbrains</groupId>
- <artifactId>annotations</artifactId>
- <version>16.0.3</version>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>${logback.version}</version>
+ <scope>runtime</scope>
</dependency>
+
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
@@ -253,7 +223,7 @@
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
- <version>3.11.1</version>
+ <version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>