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