summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormicdzied <michal.1.dziedzic@nokia.com>2018-12-13 13:18:33 +0100
committermicdzied <michal.1.dziedzic@nokia.com>2018-12-13 13:30:51 +0100
commitc35d7ae7f2ff44e0e08306f674b1b48d54831521 (patch)
tree710235392962bf9e183f5f3a76d0259f0ed3e773
parent8e8d8f7ea4105931def3a1882b56d76d2fecfd68 (diff)
remove duplicated dependencies
Change-Id: I4ead03dc4378d8f74d0221b7b36760c86b41ecf6 Issue-ID: DCAEGEN2-1033 Signed-off-by: micdzied <michal.1.dziedzic@nokia.com>
-rw-r--r--pom.xml107
-rw-r--r--prh-commons/pom.xml2
2 files changed, 2 insertions, 107 deletions
diff --git a/pom.xml b/pom.xml
index da39f210..6dc4ab95 100644
--- a/pom.xml
+++ b/pom.xml
@@ -33,13 +33,8 @@
<spring-boot.version>2.1.0.RELEASE</spring-boot.version>
<tomcat.version>8.5.32</tomcat.version>
<slf4j.version>1.7.25</slf4j.version>
- <junit-jupiter.version>5.1.0</junit-jupiter.version>
- <junit-vintage.version>5.1.0</junit-vintage.version>
<junit-platform.version>1.1.0</junit-platform.version>
<jacoco.version>0.8.2</jacoco.version>
- <reactor-netty.version>0.8.1.RELEASE</reactor-netty.version>
- <logback-classic.version>1.2.3</logback-classic.version>
- <mockito-core.version>2.16.0</mockito-core.version>
</properties>
<modules>
@@ -138,76 +133,6 @@
<version>2.8.0</version>
</dependency>
<dependency>
- <groupId>org.immutables</groupId>
- <artifactId>value</artifactId>
- <version>${immutables.version}</version>
- </dependency>
- <dependency>
- <groupId>org.immutables</groupId>
- <artifactId>gson</artifactId>
- <version>${immutables.version}</version>
- </dependency>
- <dependency>
- <groupId>io.projectreactor.netty</groupId>
- <artifactId>reactor-netty</artifactId>
- <version>${reactor-netty.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-core</artifactId>
- <version>${tomcat.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-el</artifactId>
- <version>${tomcat.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.tomcat.embed</groupId>
- <artifactId>tomcat-embed-websocket</artifactId>
- <version>${tomcat.version}</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>${logback-classic.version}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>jul-to-slf4j</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>log4j-over-slf4j</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-beans</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</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-webflux</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
@@ -215,43 +140,11 @@
<scope>import</scope>
</dependency>
<dependency>
- <groupId>io.projectreactor</groupId>
- <artifactId>reactor-bom</artifactId>
- <version>Californium-SR2</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
-
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-engine</artifactId>
- <version>${junit-jupiter.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.mockito</groupId>
- <artifactId>mockito-core</artifactId>
- <version>${mockito-core.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <version>${spring.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.2</version>
<scope>test</scope>
</dependency>
- <dependency>
- <groupId>org.glassfish.jersey.connectors</groupId>
- <artifactId>jersey-apache-connector</artifactId>
- <version>2.25.1</version>
- <scope>test</scope>
- </dependency>
</dependencies>
</dependencyManagement>
</project>
diff --git a/prh-commons/pom.xml b/prh-commons/pom.xml
index 63ac9a7d..1c78d484 100644
--- a/prh-commons/pom.xml
+++ b/prh-commons/pom.xml
@@ -38,10 +38,12 @@
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
+ <version>${immutables.version}</version>
</dependency>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>gson</artifactId>
+ <version>${immutables.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>