forked from lsmyrnaios/UrlsWorker
- Eliminate some warnings, by excluding an inner dependency.
- Comment-out some debugging gradle commands.
This commit is contained in:
parent
b6d66653f7
commit
6fd9eed1ec
|
@ -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()
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue