From 7c8a403c649db335e406302e4ad6fbddd9f08813 Mon Sep 17 00:00:00 2001 From: Ties de Kock Date: Mon, 9 Oct 2023 10:46:23 +0200 Subject: [PATCH] rpki commons 1.35 and compile with JDK 11 --- .github/workflows/ci.yml | 2 +- README.md | 2 ++ build.gradle | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b41624..5fb0fb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: # test against latest update of each major Java version, as well as specific updates of LTS versions: - java: [ 8, 11, 17 ] + java: [ 11, 17 ] name: Java ${{ matrix.java }} steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 0d03270..224bdd0 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,8 @@ Changelog * Add feature to revoke objects that TA0 knows off, but are not requested (e.g. leftover files on manifest). * Publish docker image `ghcr.io/ripe-ncc/rpki-ta-0` + * Use rpki-commons 1.35 + * Compile with JDK 11 ### 0.3.5: * Removed explicit license from all files. diff --git a/build.gradle b/build.gradle index 281546b..50b79e0 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ version = ENV['RELEASE_VERSION'] ?: gitRef() description = 'RIPE NCC Trust Anchor' dependencies { - implementation 'net.ripe.rpki:rpki-commons:1.30' + implementation 'net.ripe.rpki:rpki-commons:1.35' implementation 'commons-cli:commons-cli:1.5.0' implementation 'org.slf4j:slf4j-api:2.0.7' runtimeOnly 'org.slf4j:slf4j-simple:2.0.7'