Skip to content
This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Commit 99f966f

Browse files
authored
Bump bouncy castle to version 1.75 (#104)
1 parent 42f9cf7 commit 99f966f

File tree

5 files changed

+28
-24
lines changed

5 files changed

+28
-24
lines changed

GeneXusCryptography/pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,15 @@
2222

2323

2424
<dependencies>
25-
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on -->
2625
<dependency>
2726
<groupId>org.bouncycastle</groupId>
28-
<artifactId>bcpkix-jdk15on</artifactId>
29-
<version>1.69</version>
27+
<artifactId>bcpkix-jdk18on</artifactId>
28+
<version>${org.bouncycastle.version}</version>
3029
</dependency>
31-
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
3230
<dependency>
3331
<groupId>org.bouncycastle</groupId>
34-
<artifactId>bcprov-jdk15on</artifactId>
35-
<version>1.69</version>
32+
<artifactId>bcprov-jdk18on</artifactId>
33+
<version>${org.bouncycastle.version}</version>
3634
</dependency>
3735
<dependency>
3836
<groupId>com.genexus</groupId>

GeneXusJWT/pom.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,13 @@
4949
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on -->
5050
<dependency>
5151
<groupId>org.bouncycastle</groupId>
52-
<artifactId>bcpkix-jdk15on</artifactId>
53-
<version>1.69</version>
52+
<artifactId>bcpkix-jdk18on</artifactId>
53+
<version>${org.bouncycastle.version}</version>
5454
</dependency>
55-
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
5655
<dependency>
5756
<groupId>org.bouncycastle</groupId>
58-
<artifactId>bcprov-jdk15on</artifactId>
59-
<version>1.69</version>
57+
<artifactId>bcprov-jdk18on</artifactId>
58+
<version>${org.bouncycastle.version}</version>
6059
</dependency>
6160
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
6261
<dependency>

GeneXusXmlSignature/pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,19 @@
3030
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on -->
3131
<dependency>
3232
<groupId>org.bouncycastle</groupId>
33-
<artifactId>bcpkix-jdk15on</artifactId>
34-
<version>1.69</version>
33+
<artifactId>bcpkix-jdk15to18</artifactId>
34+
<version>${org.bouncycastle.version}</version>
3535
</dependency>
3636
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
3737
<dependency>
3838
<groupId>commons-codec</groupId>
3939
<artifactId>commons-codec</artifactId>
4040
<version>1.11</version>
4141
</dependency>
42-
43-
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
4442
<dependency>
4543
<groupId>org.bouncycastle</groupId>
46-
<artifactId>bcprov-jdk15on</artifactId>
47-
<version>1.69</version>
44+
<artifactId>bcprov-jdk18on</artifactId>
45+
<version>${org.bouncycastle.version}</version>
4846
</dependency>
4947
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-nop -->
5048
<dependency>

SecurityAPICommons/pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,15 @@
2222
<dependencies>
2323

2424

25-
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on -->
2625
<dependency>
2726
<groupId>org.bouncycastle</groupId>
28-
<artifactId>bcpkix-jdk15on</artifactId>
29-
<version>1.69</version>
27+
<artifactId>bcpkix-jdk18on</artifactId>
28+
<version>${org.bouncycastle.version}</version>
3029
</dependency>
31-
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
3230
<dependency>
3331
<groupId>org.bouncycastle</groupId>
34-
<artifactId>bcprov-jdk15on</artifactId>
35-
<version>1.69</version>
32+
<artifactId>bcprov-jdk18on</artifactId>
33+
<version>${org.bouncycastle.version}</version>
3634
</dependency>
3735
</dependencies>
3836
<build>

pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@
1414

1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17+
<org.bouncycastle.version>1.75</org.bouncycastle.version>
1718
</properties>
1819

1920
<dependencies>
2021
<dependency>
2122
<groupId>junit</groupId>
2223
<artifactId>junit</artifactId>
23-
<version>3.8.1</version>
24+
<version>4.13.2</version>
2425
<scope>test</scope>
2526
</dependency>
2627
</dependencies>
@@ -33,7 +34,17 @@
3334
<module>GeneXusFtps</module>
3435
</modules>
3536
<build>
37+
38+
3639
<plugins>
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-surefire-plugin</artifactId>
43+
<version>3.1.2</version>
44+
<configuration>
45+
<argLine>-Xmx1024m</argLine>
46+
</configuration>
47+
</plugin>
3748
<plugin>
3849
<groupId>org.apache.maven.plugins</groupId>
3950
<artifactId>maven-compiler-plugin</artifactId>

0 commit comments

Comments
 (0)