eliminate gradle warning

This commit is contained in:
Bossanyi Tibor 2020-05-10 11:13:20 +02:00
parent 4ccc7e5795
commit f0536fb470
2 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ connect:
image: mysql:latest
script:
- apt-get update && apt-get --assume-yes install mysql-client
- mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql -e "show databases; use $MYSQL_DATABASE_NAME; show tables;"
- mysql --user=root --password="$MYSQL_ROOT_PASSWORD" --host=mysql -e "show databases; use $MYSQL_DATABASE; show tables;"
test:
stage: test

View File

@ -26,8 +26,8 @@ dependencies {
testImplementation("org.springframework.boot:spring-boot-starter-test") {
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")
}
testCompile("junit:junit:4.13")
testCompile("org.jetbrains.kotlin:kotlin-test-junit5:1.3.72")
testImplementation("junit:junit:4.13")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5:1.3.72")
}