Переход на Gradle
This commit is contained in:
20
build.gradle
Normal file
20
build.gradle
Normal file
@@ -0,0 +1,20 @@
|
||||
subprojects {
|
||||
apply plugin: 'java'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
ext {
|
||||
slf4jVersion = '1.7.21'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile group: 'org.slf4j', name: 'slf4j-api', version: slf4jVersion
|
||||
}
|
||||
|
||||
compileJava {
|
||||
sourceCompatibility = 1.8
|
||||
targetCompatibility = 1.8
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user