upgrade Gradle
This commit is contained in:
25
build.gradle
25
build.gradle
@@ -1,15 +1,26 @@
|
||||
group = 'ru.dmitriymx'
|
||||
version = '2.0.4-SNAPSHOT'
|
||||
plugins {
|
||||
id("java")
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'idea'
|
||||
apply plugin: 'eclipse'
|
||||
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 {
|
||||
compile (['jline:jline:2.13'])
|
||||
testCompile(['junit:junit:4.12'])
|
||||
implementation("jline:jline:2.13")
|
||||
testImplementation("junit:junit:4.12")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user