Skip to content

Commit

Permalink
Merge pull request #204 from CDCgov/dev-update-build-gradle-jvm-version
Browse files Browse the repository at this point in the history
Updated build.gradle to use jvm 17
  • Loading branch information
uek3-cdc authored Oct 9, 2024
2 parents 09f11da + 97ca323 commit 946f6e6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pstatus-notifications-workflow-ktor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ repositories {
mavenCentral()
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}

group "gov.cdc.ocio"
version "0.0.1"

Expand Down Expand Up @@ -53,9 +58,7 @@ dependencies {
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(20)
}

repositories{
mavenLocal()
mavenCentral()
Expand Down

0 comments on commit 946f6e6

Please sign in to comment.