updated some libs
continuous-integration/drone/push Build is passing Details

* spring boot2.1.7 -> 2.1.8
* coroutines-core 1.2.2 -> 1.3.2
* print test results (passed, failed, skipped)
This commit is contained in:
Jannik 2019-09-07 20:44:44 +02:00
parent 9797e23efb
commit 715af9987b
Signed by: Seil0
GPG Key ID: E8459F3723C52C24
1 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,7 @@
buildscript {
ext.kotlin_version = '1.3.50'
ext.spring_boot_version = '2.1.7.RELEASE'
ext.spring_boot_version = '2.1.8.RELEASE'
repositories {
jcenter()
@ -21,6 +21,10 @@ apply plugin: 'io.spring.dependency-management'
test {
useJUnitPlatform()
testLogging {
events "PASSED", "FAILED", "SKIPPED"
}
}
repositories {
@ -29,7 +33,7 @@ repositories {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.2.2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.1"
implementation 'org.jsoup:jsoup:1.12.1'
implementation 'org.springframework.boot:spring-boot-starter-web'