diff options
author | Léo Geoffroy <leo.geoffroy@sonarsource.com> | 2024-02-20 16:30:20 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-02-21 20:02:34 +0000 |
commit | 4a921c76d47497ed1412a40e30e91e407eb8f37f (patch) | |
tree | 263bdfe9acdfa11e62997275f3fdf65680d37bda /server/sonar-db-core/build.gradle | |
parent | 55f91d45997bdd5fdf505d8d5769f3d75dd13180 (diff) | |
download | sonarqube-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.gradle | 4 |
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' } |