mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2025-09-09 19:29:41 +02:00
Compare commits
3 commits
0e8bf060f2
...
8a3337f1f5
Author | SHA1 | Date | |
---|---|---|---|
8a3337f1f5 | |||
aa521bac47 | |||
6ae12c1262 |
4 changed files with 7 additions and 3 deletions
|
@ -5,6 +5,9 @@ SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
# Cert-D-Java Changelog
|
# Cert-D-Java Changelog
|
||||||
|
|
||||||
|
## 0.2.2-SNAPSHOT
|
||||||
|
- Bump Bouncy Castle to `1.72`
|
||||||
|
|
||||||
## 0.2.1
|
## 0.2.1
|
||||||
- Throw `NoSuchElementException` when querying non-existent certificates
|
- Throw `NoSuchElementException` when querying non-existent certificates
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ dependencies {
|
||||||
testImplementation project(":pgp-cert-d-java-jdbc-sqlite-lookup")
|
testImplementation project(":pgp-cert-d-java-jdbc-sqlite-lookup")
|
||||||
|
|
||||||
testImplementation "org.bouncycastle:bcprov-jdk15to18:$bouncycastleVersion"
|
testImplementation "org.bouncycastle:bcprov-jdk15to18:$bouncycastleVersion"
|
||||||
testImplementation "org.bouncycastle:bcpg-jdk15to18:$bouncycastleVersion"
|
testImplementation "org.bouncycastle:bcpg-jdk15to18:$bouncyPgVersion"
|
||||||
}
|
}
|
||||||
|
|
||||||
animalsniffer {
|
animalsniffer {
|
||||||
|
|
|
@ -18,7 +18,7 @@ public class BaseDirectoryProviderTest {
|
||||||
public void testGetDefaultBaseDir_Linux() {
|
public void testGetDefaultBaseDir_Linux() {
|
||||||
assumeTrue(System.getProperty("os.name").equalsIgnoreCase("linux"));
|
assumeTrue(System.getProperty("os.name").equalsIgnoreCase("linux"));
|
||||||
File baseDir = BaseDirectoryProvider.getDefaultBaseDirForOS("linux");
|
File baseDir = BaseDirectoryProvider.getDefaultBaseDirForOS("linux");
|
||||||
assertTrue(baseDir.getAbsolutePath().endsWith("/.local/share/pgp.cert.d"));
|
assertTrue(baseDir.getAbsolutePath().endsWith("pgp.cert.d"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
@ -9,7 +9,8 @@ allprojects {
|
||||||
minAndroidSdk = 26
|
minAndroidSdk = 26
|
||||||
animalsnifferSignatureVersion = "$minAndroidSdk:8.0.0_r2"
|
animalsnifferSignatureVersion = "$minAndroidSdk:8.0.0_r2"
|
||||||
javaSourceCompatibility = 1.8
|
javaSourceCompatibility = 1.8
|
||||||
bouncycastleVersion = '1.71'
|
bouncycastleVersion = '1.72'
|
||||||
|
bouncyPgVersion = '1.72.3'
|
||||||
slf4jVersion = '1.7.36'
|
slf4jVersion = '1.7.36'
|
||||||
logbackVersion = '1.2.11'
|
logbackVersion = '1.2.11'
|
||||||
junitVersion = '5.8.2'
|
junitVersion = '5.8.2'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue