27 lines
448 B
Groovy
27 lines
448 B
Groovy
plugins {
|
|
id("java")
|
|
}
|
|
|
|
wrapper {
|
|
gradleVersion = "8.10.2"
|
|
distributionType = Wrapper.DistributionType.BIN
|
|
}
|
|
|
|
compileJava {
|
|
targetCompatibility = sourceCompatibility = JavaVersion.VERSION_1_7
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
group = "ru.dmitriymx"
|
|
version = "2.0.4-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("jline:jline:2.13")
|
|
testImplementation("junit:junit:4.13.2")
|
|
}
|