At https://repo.maven.apache.org/maven2/org/bouncycastle/bcpg-jdk18on/ there is a 1.83 but not a 1.84 version.
Is that an oversight?
This causes failures trying to update Eclipse Orbit and the Eclipse Platform:
eclipse-platform/eclipse.platform.releng.aggregator#3765
23:15:07 Missing requirement: bcpg 1.83.0 requires 'java.package; org.bouncycastle.asn1 [1.83.0,1.84.0)' but it could not be found
That's because we have a mismatched update with a combination of 1.83 and 1.84:
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk18on</artifactId>
<version>1.83</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
<version>1.84</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-jdk18on</artifactId>
<version>1.84</version>
<type>jar</type>
</dependency>
So we're not sure if the missing 1.84 version is an oversight.
Or maybe we're just too impatient and it will appear shortly?
At https://repo.maven.apache.org/maven2/org/bouncycastle/bcpg-jdk18on/ there is a 1.83 but not a 1.84 version.
Is that an oversight?
This causes failures trying to update Eclipse Orbit and the Eclipse Platform:
eclipse-platform/eclipse.platform.releng.aggregator#3765
That's because we have a mismatched update with a combination of 1.83 and 1.84:
So we're not sure if the missing 1.84 version is an oversight.
Or maybe we're just too impatient and it will appear shortly?