diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8ab9c3..e486b69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,8 +45,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] - java-version: [17, 25] + os: [ubuntu-latest, macos-latest, windows-latest] + java-version: [11, 25] steps: - uses: actions/checkout@v7 @@ -65,7 +65,7 @@ jobs: cache: maven - name: Build and test - run: mvn -B verify ${{ matrix.os == 'macos-latest' && '-Pno-docker' || '' }} + run: mvn -B verify ${{ matrix.os != 'ubuntu-latest' && '-Pno-docker' || '' }} - name: Publish Test Report uses: mikepenz/action-junit-report@v6 diff --git a/core/pom.xml b/core/pom.xml index 14f7ce1..6b9529f 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -14,8 +14,8 @@ - land.oras - oras-java-sdk + io.roastedroot + oras-java run.endive diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 111fd53..51f1d49 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -39,8 +39,8 @@ - land.oras - oras-java-sdk + io.roastedroot + oras-java test diff --git a/pom.xml b/pom.xml index 48da976..31dd79a 100644 --- a/pom.xml +++ b/pom.xml @@ -61,9 +61,10 @@ 3.15.2 - 0.8.0 + 0.0.2 1.0.0 2.1.0 + 1.85 5.14.4 @@ -83,8 +84,8 @@ ${project.version} - land.oras - oras-java-sdk + io.roastedroot + oras-java ${oras.version} @@ -102,6 +103,21 @@ maven-plugin-annotations ${maven-plugin-annotations.version} + + org.bouncycastle + bcpkix-jdk18on + ${bouncycastle.version} + + + org.bouncycastle + bcprov-jdk18on + ${bouncycastle.version} + + + org.bouncycastle + bcutil-jdk18on + ${bouncycastle.version} + org.junit.jupiter junit-jupiter @@ -144,7 +160,7 @@ ${maven-compiler-plugin.version} true - 17 + 11