Skip to content

Commit

Permalink
Merge branch 'pom_cleanup' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris Skert committed Jun 5, 2018
2 parents f17b5a4 + 6eb6826 commit 9d892c9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 62 deletions.
42 changes: 1 addition & 41 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</scm>

<properties>
<spring-boot.version>2.0.1.RELEASE</spring-boot.version>
<spring-boot.version>2.0.2.RELEASE</spring-boot.version>
<swagger.version>2.6.1</swagger.version>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
Expand Down Expand Up @@ -178,20 +178,6 @@
<version>0.2</version>
</dependency>

<!-- commons -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.18</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.5</version>
<scope>compile</scope>
</dependency>

<!-- Environment -->
<dependency>
<groupId>de.adorsys.cryptoutils</groupId>
Expand Down Expand Up @@ -220,7 +206,6 @@
<version>${cryptoutils.version}</version>
</dependency>


<dependency>
<groupId>de.adorsys.lock-persistence</groupId>
<artifactId>lock-persistence-jpa</artifactId>
Expand All @@ -237,12 +222,6 @@
<version>${lock-persistence.version}</version>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.5</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
Expand Down Expand Up @@ -294,31 +273,12 @@
</dependency>

<!-- Testing Libraries -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.nitorcreations</groupId>
<artifactId>junit-runners</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>2.13.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down
14 changes: 4 additions & 10 deletions sts-keymanagement/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,16 @@
<artifactId>lombok</artifactId>
</dependency>

<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.nitorcreations</groupId>
<artifactId>junit-runners</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
</dependency>

</dependencies>
</project>
15 changes: 4 additions & 11 deletions sts-persistence-jpa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,22 +70,15 @@
<artifactId>hibernate-java8</artifactId>
</dependency>

<!-- Testing Libraries -->
<!-- test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.nitorcreations</groupId>
<artifactId>junit-runners</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
</dependency>
</dependencies>
</project>

0 comments on commit 9d892c9

Please sign in to comment.