Skip to content

Commit

Permalink
Extract bouncycastle version to property
Browse files Browse the repository at this point in the history
Due to strict minor version requirements bc* jars can't be updated
separately but have to happen in one go.
  • Loading branch information
akurtakov committed Nov 15, 2024
1 parent 6eaf132 commit a36b4f5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<surefire-version>3.5.2</surefire-version>
<equinoxVersion>3.21.0</equinoxVersion>
<ecjVersion>3.39.0</ecjVersion>
<bouncycastleVersion>1.79</bouncycastleVersion>
<bnd.version>7.0.0</bnd.version>
<junit5.version>5.11.3</junit5.version>
<junit5.platform.version>1.11.3</junit5.platform.version>
Expand Down Expand Up @@ -314,17 +315,17 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk18on</artifactId>
<version>1.78.1</version>
<version>${bouncycastleVersion}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.78.1</version>
<version>${bouncycastleVersion}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-jdk18on</artifactId>
<version>1.78.1</version>
<version>${bouncycastleVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit a36b4f5

Please sign in to comment.