Skip to content

Commit

Permalink
Bugfix bouncycastle version conflict (#736)
Browse files Browse the repository at this point in the history
* resolve bouncycastle dependency version conflict

* Increment snapshot version to 0.9.1-SNAPSHOT

* [maven-release-plugin] prepare release tessera-0.9.1

* [maven-release-plugin] prepare for next development iteration

* Increment snapshot version to 0.10-SNAPSHOT to match master 
before creating PR
  • Loading branch information
melowe authored May 7, 2019
1 parent 7e39a03 commit 9cbcbe1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
1 change: 0 additions & 1 deletion enclave/enclave-jaxrs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.59</version>
<scope>runtime</scope>
<type>jar</type>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion enclave/enclave-websockets/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.jpmorgan.quorum</groupId>
<artifactId>enclave</artifactId>
<version>0.9-SNAPSHOT</version>
<version>0.10-SNAPSHOT</version>
</parent>
<artifactId>enclave-websockets</artifactId>
<packaging>jar</packaging>
Expand Down
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<grpc.version>1.14.0</grpc.version>
<h2.version>1.4.199</h2.version>
<owasp.plugin.version>5.0.0-M2</owasp.plugin.version>
<bouncycastle.version>1.61</bouncycastle.version>
<logback.version>1.2.3</logback.version>
</properties>

Expand Down Expand Up @@ -652,7 +653,13 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.61</version>
<version>${bouncycastle.version}</version>
</dependency>

<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion server/websockets-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.jpmorgan.quorum</groupId>
<artifactId>server</artifactId>
<version>0.9-SNAPSHOT</version>
<version>0.10-SNAPSHOT</version>
</parent>
<artifactId>websockets-server</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion tessera-sync/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.jpmorgan.quorum</groupId>
<artifactId>tessera</artifactId>
<version>0.9-SNAPSHOT</version>
<version>0.10-SNAPSHOT</version>
</parent>
<artifactId>tessera-sync</artifactId>
<packaging>jar</packaging>
Expand Down

0 comments on commit 9cbcbe1

Please sign in to comment.