Skip to content

Commit

Permalink
Upgrade to Spring Boot 2.3.0 and fixes of bouncycastle dep-convergence
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Jun 2, 2020
1 parent ffa6fa7 commit 3fd0350
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 30 deletions.
2 changes: 0 additions & 2 deletions gui/admin-gui/pom.xml
Expand Up @@ -615,11 +615,9 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.64</version>
</dependency>

<!-- TEST -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down
13 changes: 12 additions & 1 deletion pom.xml
Expand Up @@ -64,7 +64,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.2.7.RELEASE</version>
<version>2.3.0.RELEASE</version>
</parent>

<groupId>com.evolveum.midpoint</groupId>
Expand Down Expand Up @@ -205,6 +205,7 @@
<xerces.version>2.12.0</xerces.version>
<commons.csv.version>1.8</commons.csv.version>
<j2html.version>1.4.0</j2html.version>
<bouncycastle.version>1.64</bouncycastle.version>

<!--
Coming in different versions from org.glassfish.jaxb:xsom and from
Expand Down Expand Up @@ -1371,6 +1372,16 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>

<!-- webjars -->
<dependency>
Expand Down
20 changes: 5 additions & 15 deletions testing/schrodingertest/pom.xml
Expand Up @@ -97,10 +97,6 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</exclusion>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
Expand Down Expand Up @@ -130,22 +126,16 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>com.evolveum.midpoint.repo</groupId>
<artifactId>repo-sql-impl</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.evolveum.midpoint.repo</groupId>
<artifactId>repo-sql-impl</artifactId>
<version>${project.version}</version>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<!--<exclusions>-->
<!-- <exclusion>-->
<!-- <groupId>org.hibernate</groupId>-->
<!-- <artifactId>hibernate-core</artifactId>-->
<!-- </exclusion>-->
<!--</exclusions>-->
</dependency>
</dependencies>

Expand Down
12 changes: 0 additions & 12 deletions tools/schrodinger/pom.xml
Expand Up @@ -70,17 +70,5 @@
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>

0 comments on commit 3fd0350

Please sign in to comment.