2023-09-17 22:58:54 -04:00
|
|
|
plugins {
|
|
|
|
id "nebula.lint" version "18.1.0"
|
2019-10-31 21:43:47 -04:00
|
|
|
}
|
|
|
|
|
2023-09-17 22:58:54 -04:00
|
|
|
|
2020-07-07 07:18:10 -04:00
|
|
|
description = "Gradle 5 root project"
|
|
|
|
allprojects {
|
2023-09-17 22:58:54 -04:00
|
|
|
apply plugin: "java"
|
|
|
|
apply plugin: "nebula.lint"
|
2020-07-07 07:18:10 -04:00
|
|
|
gradleLint {
|
2023-09-17 22:58:54 -04:00
|
|
|
rules = [
|
|
|
|
// 'unused-dependency',
|
|
|
|
// 'dependency-parentheses',
|
|
|
|
// 'undeclared-dependency',
|
|
|
|
// 'minimum-dependency-version'
|
|
|
|
]
|
2020-07-07 07:18:10 -04:00
|
|
|
reportFormat = 'text'
|
2023-09-17 22:58:54 -04:00
|
|
|
reportOnlyFixableViolations = true
|
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 {
|
2023-09-17 22:58:54 -04:00
|
|
|
mavenCentral()
|
2020-07-07 07:18:10 -04:00
|
|
|
}
|
2019-10-31 21:43:47 -04:00
|
|
|
}
|