1

build: мелкие правки в build.gradle

This commit is contained in:
2025-07-21 16:33:11 +03:00
parent 16f22f636b
commit 8dd80fb012

View File

@@ -1,15 +1,14 @@
plugins { plugins {
id "java" id("java")
}
compileJava {
targetCompatibility = sourceCompatibility = JavaVersion.VERSION_17
options.encoding = "UTF-8"
} }
group = "ru.di9.fluent" group = "ru.di9.fluent"
version = "1.0-SNAPSHOT" version = "1.0-SNAPSHOT"
java.toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
repositories { repositories {
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
@@ -42,4 +41,3 @@ dependencies {
test { test {
useJUnitPlatform() useJUnitPlatform()
} }