Archived
0
This repository has been archived on 2025-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
shell/build.gradle
2025-01-17 23:29:47 +03:00

27 lines
446 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.12")
}