Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
ad78dc8
ci: test on Java 8, 11, 17, 24, 25
jGleitz Feb 27, 2026
f21d4f2
ci: stop testing on Java 8
jGleitz Feb 27, 2026
303d159
chore(deps): update gradle to v9
renovate[bot] Jan 29, 2026
1e90687
chore(deps): update plugin org.jetbrains.kotlin.jvm to v2
renovate[bot] Feb 5, 2026
c02f5a0
Initial plan
Copilot Feb 27, 2026
a557beb
Align GitHub Actions with consistent.software and update Renovate config
Copilot Feb 27, 2026
2a440fd
build: set Java target version to 11 in all subprojects
Copilot Feb 27, 2026
7d42825
build: bump Java target compatibility to 17, drop Java 11 from CI
Copilot Feb 27, 2026
1b6e999
Adapt Java versions to match jGleitz-patch-1 base branch
Copilot Feb 27, 2026
d3321e5
Address review feedback: branch filters, .sdkmanrc, move docs to CI
Copilot Feb 27, 2026
c119e4f
Address review: merge docs into build job, use native sdkmanrc, Java …
Copilot Feb 27, 2026
ccd2b16
Rename default branch master → main in all workflow files
Copilot Feb 28, 2026
4b1424b
Merge branch 'jGleitz-patch-1' of https://github.com/jGleitz/testfile…
Copilot Feb 28, 2026
947197e
Merge pull request #196 from jGleitz/copilot/align-github-actions-setup
jGleitz Feb 28, 2026
fe06df2
Initial plan
Copilot Feb 28, 2026
b2a1b11
ci: build docs as CI artifact; deploy docs to Pages in release pipeli…
Copilot Feb 28, 2026
265667c
ci: run only gradle build
jGleitz Feb 28, 2026
cf1129c
Merge pull request #197 from jGleitz/copilot/sub-pr-192-again
jGleitz Feb 28, 2026
16694e5
ci: test on Java LTS versions
jGleitz Feb 28, 2026
021a168
Initial plan
Copilot Feb 28, 2026
8126174
chore: migrate Dokka from V1 (1.9.20) to V2 (2.1.0)
Copilot Feb 28, 2026
92573d9
build: apply develocity plugin
jGleitz Feb 28, 2026
f529ff2
Merge pull request #198 from jGleitz/copilot/align-dokka-setup
jGleitz Feb 28, 2026
928fea4
Remove Palantir git-version plugin, use version-from-env pattern
Copilot Feb 28, 2026
d7e5cc2
ci: run release check only on main branch
Copilot Feb 28, 2026
f4609ca
Fix Gradle 9 compatibility: upgrade nexus plugin, fix deprecated APIs
Copilot Feb 28, 2026
65f4c08
refactor: remove explicitApi() opt-in from build files
Copilot Feb 28, 2026
8f13bb4
refactor: remove ExperimentalPathApi opt-in and restore explicitApi()
Copilot Feb 28, 2026
6f663fe
build: fix path to ExampleSpec
jGleitz Feb 28, 2026
c9e0530
build: fix path to ExampleSpec
jGleitz Feb 28, 2026
606bced
ci: activate build scan on cradle build
jGleitz Feb 28, 2026
7429ba7
build: activate gradle build and configuration cache
jGleitz Feb 28, 2026
cbf3b3f
chore: ./gradlew wrapper --distribution-type all
jGleitz Mar 1, 2026
867210c
build: convert all dependency declarations to the single string notation
jGleitz Mar 1, 2026
17e5dae
Merge branch 'v3' into jGleitz-patch-1
jGleitz Mar 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java-version: [ 8, 11, 16 ]
java-version: [ 11, 17, 24, 25 ]
fail-fast: false
Comment thread
jGleitz marked this conversation as resolved.
steps:
- name: Checkout
Expand All @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: adopt
distribution: temurin
- name: Prepare
run: ./gradlew clean dependencies
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.dokka.gradle.DokkaTask

plugins {
kotlin("jvm") version "1.9.23"
kotlin("jvm") version "2.3.10"
id("org.jetbrains.dokka") version "1.9.20"
id("com.palantir.git-version") version "3.0.0"
`maven-publish`
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
Comment thread
jGleitz marked this conversation as resolved.
Outdated
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading