Updated dependencies.
This commit is contained in:
parent
65c736cc23
commit
b984f54a8d
2 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ plugins {
|
|||
id("com.github.ben-manes.versions") version "0.38.0"
|
||||
id("io.gitlab.arturbosch.detekt") version "1.16.0"
|
||||
id("org.jetbrains.dokka") version "1.4.32"
|
||||
id("org.sonarqube") version "3.1.1"
|
||||
id("org.sonarqube") version "3.2.0"
|
||||
}
|
||||
|
||||
group = "net.thauvin.erik"
|
||||
|
@ -31,7 +31,6 @@ val versions: VersionInfo by extra { VersionInfo }
|
|||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
jcenter() // needed for detekt 1.16.0
|
||||
maven { url = uri("https://oss.sonatype.org/content/repositories/snapshots") }
|
||||
}
|
||||
|
||||
|
@ -49,6 +48,7 @@ java {
|
|||
}
|
||||
|
||||
detekt {
|
||||
toolVersion = "main-SNAPSHOT"
|
||||
baseline = project.rootDir.resolve("config/detekt/baseline.xml")
|
||||
}
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ gradle_opts="--console=plain --no-build-cache --no-daemon"
|
|||
maven_args=""
|
||||
|
||||
#
|
||||
# Version: 1.1.4
|
||||
# Version: 1.1.5
|
||||
#
|
||||
|
||||
if [ "$java8" = true ]
|
||||
|
@ -40,7 +40,7 @@ pause() {
|
|||
}
|
||||
|
||||
checkCopyright() {
|
||||
if [ "$(grep -c "$date" "$1")" -eq 0 ]
|
||||
if [ "$(grep -c "$date" "$1")" == "0" ]
|
||||
then
|
||||
echo -e " Invalid: ${red}$f${std}"
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue