java-tutorials/gradle-5/build.gradle
Loredana Crusoveanu 7ab2f437ee Revert "BAEL-4134"
2020-07-07 14:18:10 +03:00

21 lines
406 B
Groovy

plugins{
id "nebula.lint" version "16.9.0"
}
description = "Gradle 5 root project"
allprojects {
apply plugin :"java"
apply plugin :"nebula.lint"
gradleLint {
rules=['unused-dependency']
reportFormat = 'text'
}
group = "com.baeldung"
version = "0.0.1"
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
repositories {
jcenter()
}
}