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 image: mysql:latest
script: script:
- apt-get update && apt-get --assume-yes install mysql-client - 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: test:
stage: test stage: test

View File

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