aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-db-core/build.gradle
diff options
context:
space:
mode:
authorLéo Geoffroy <leo.geoffroy@sonarsource.com>2024-02-20 16:30:20 +0100
committersonartech <sonartech@sonarsource.com>2024-02-21 20:02:34 +0000
commit4a921c76d47497ed1412a40e30e91e407eb8f37f (patch)
tree263bdfe9acdfa11e62997275f3fdf65680d37bda /server/sonar-db-core/build.gradle
parent55f91d45997bdd5fdf505d8d5769f3d75dd13180 (diff)
downloadsonarqube-4a921c76d47497ed1412a40e30e91e407eb8f37f.tar.gz
sonarqube-4a921c76d47497ed1412a40e30e91e407eb8f37f.zip
SONAR-21643 Migrate db tests migration to Junit5
#
Diffstat (limited to 'server/sonar-db-core/build.gradle')
-rw-r--r--server/sonar-db-core/build.gradle4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/sonar-db-core/build.gradle b/server/sonar-db-core/build.gradle
index 3d32c75be42..c65d7834a21 100644
--- a/server/sonar-db-core/build.gradle
+++ b/server/sonar-db-core/build.gradle
@@ -26,12 +26,15 @@ dependencies {
testImplementation 'com.microsoft.sqlserver:mssql-jdbc'
testImplementation 'com.oracle.database.jdbc:ojdbc11'
testImplementation 'com.tngtech.java:junit-dataprovider'
+ testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.mockito:mockito-core'
testImplementation 'org.postgresql:postgresql'
testImplementation 'org.sonarsource.api.plugin:sonar-plugin-api-test-fixtures'
testImplementation project(':sonar-testing-harness')
+ testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
+ testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
testRuntimeOnly 'com.h2database:h2'
testRuntimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
testRuntimeOnly 'com.oracle.database.jdbc:ojdbc11'
@@ -43,6 +46,7 @@ dependencies {
testFixturesApi 'org.apache.commons:commons-collections4'
testFixturesImplementation 'com.oracle.database.jdbc:ojdbc11'
+ testFixturesImplementation 'org.junit.jupiter:junit-jupiter-api'
testFixturesCompileOnly 'com.google.code.findbugs:jsr305'
}