Skip to content

Commit

Permalink
fix java 버전 명시 및 jvmToolchain 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
eshc123 committed Aug 30, 2024
1 parent 9269fd2 commit 0fd169d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions core/domain/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
plugins {
id("java-library")
alias(libs.plugins.kotlin.jvm)
alias(libs.plugins.kotlin.ksp)
}

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

toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}

kotlin {
jvmToolchain(17)
}

dependencies {
Expand Down
4 changes: 4 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ dependencyResolutionManagement {
}
}

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version("0.5.0")
}

rootProject.name = "mission-mate"
include(":app")
include(":core:data")
Expand Down

0 comments on commit 0fd169d

Please sign in to comment.