Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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/gradle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
environment: PROD
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ subprojects {
}

// compile
java.sourceCompatibility = JavaVersion.VERSION_17
java.sourceCompatibility = JavaVersion.VERSION_21

tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "17"
jvmTarget = "21"
languageVersion = "1.9"
freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn")
}
Expand Down Expand Up @@ -105,7 +105,7 @@ subprojects {

tasks {
withType<Detekt> {
this.jvmTarget = "14"
this.jvmTarget = "21"
reports {
// observe findings in your browser with structure and code snippets
html.required.set(true)
Expand All @@ -121,7 +121,7 @@ subprojects {

// jacoco
jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.12"
}

tasks.jacocoTestReport {
Expand Down
Loading