2020-07-07 07:18:10 -04:00
|
|
|
plugins{
|
|
|
|
id "nebula.lint" version "16.9.0"
|
2019-10-31 21:43:47 -04:00
|
|
|
}
|
|
|
|
|
2020-07-07 07:18:10 -04:00
|
|
|
description = "Gradle 5 root project"
|
|
|
|
allprojects {
|
|
|
|
apply plugin :"java"
|
|
|
|
apply plugin :"nebula.lint"
|
|
|
|
gradleLint {
|
|
|
|
rules=['unused-dependency']
|
|
|
|
reportFormat = 'text'
|
2019-10-31 21:43:47 -04:00
|
|
|
}
|
2020-07-07 07:18:10 -04:00
|
|
|
group = "com.baeldung"
|
|
|
|
version = "0.0.1"
|
|
|
|
sourceCompatibility = "1.8"
|
|
|
|
targetCompatibility = "1.8"
|
2019-10-31 21:43:47 -04:00
|
|
|
|
2020-07-07 07:18:10 -04:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
2019-10-31 21:43:47 -04:00
|
|
|
}
|