- Eliminate some warnings, by excluding an inner dependency.

- Comment-out some debugging gradle commands.
This commit is contained in:
Lampros Smyrnaios 2021-09-02 18:35:47 +03:00
parent b6d66653f7
commit 6fd9eed1ec
2 changed files with 9 additions and 2 deletions

View File

@ -48,6 +48,11 @@ dependencies {
testImplementation "org.springframework.boot:spring-boot-starter-test:${springBootVersion}"
}
configurations {
// Eliminates logback from other dependencies.
all*.exclude group: 'ch.qos.logback'
}
test {
useJUnitPlatform()
}

View File

@ -30,8 +30,10 @@ ls /opt/gradle/gradle-${gradleVersion}
export PATH=$PATH:/opt/gradle/gradle-${gradleVersion}/bin
gradle wrapper --gradle-version=${gradleVersion} --distribution-type=bin
gradle tasks
gradle -v
#gradle tasks # For debugging installation
#gradle -v # For debugging installation
gradle clean
gradle build
gradle bootRun