diff options
author | Léo Geoffroy <leo.geoffroy@sonarsource.com> | 2024-02-22 11:31:15 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-02-23 20:02:36 +0000 |
commit | c2a76e27e6c123494613bdd4f563a04fdb3cd8be (patch) | |
tree | 7cddee4480afeefbedc1d46797d646358a09da84 /build.gradle | |
parent | a7e89a359288462eed1bff906f5203b0d8e59de9 (diff) | |
download | sonarqube-c2a76e27e6c123494613bdd4f563a04fdb3cd8be.tar.gz sonarqube-c2a76e27e6c123494613bdd4f563a04fdb3cd8be.zip |
SONAR-21643 Add support to Junit5 for BBTs
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 5455321fc4d..a512e70899f 100644 --- a/build.gradle +++ b/build.gradle @@ -432,9 +432,14 @@ subprojects { dependency 'org.reflections:reflections:0.10.2' dependency 'org.simpleframework:simple:5.1.6' dependency 'org.sonarsource.git.blame:git-files-blame:1.0.2.275' - dependency ('org.sonarsource.orchestrator:sonar-orchestrator-junit4:4.7.1.1872') { + dependency('org.sonarsource.orchestrator:sonar-orchestrator-junit4:4.8.0.1898') { exclude 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml' } + dependency('org.sonarsource.orchestrator:sonar-orchestrator-junit5:4.8.0.1898') { + exclude 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml' + } + dependency 'org.junit.platform:junit-platform-suite-api:1.10.2' + dependency 'org.junit.platform:junit-platform-suite-engine:1.10.2' dependency 'org.sonarsource.update-center:sonar-update-center-common:1.31.0.1207' dependency("org.springframework:spring-context:${springVersion}") { exclude 'commons-logging:commons-logging' |