Skip to content

Commit 45b3271

Browse files
authored
Merge pull request #75 from testng-team/release/7.11
feat: remove slf4j-api out of the p2 bundle to avoid the build failure in testng-eclipse
2 parents f67acc3 + 1c2752e commit 45b3271

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,15 @@ defaultTasks 'updateSiteZip'
5353
updateSiteZip.dependsOn clean
5454

5555
platform {
56-
bundle "org.testng:testng:${version}"
56+
bundle "org.testng:testng:${version}", {
57+
exclude module: 'ant'
58+
exclude module: 'bsh'
59+
exclude module: 'junit'
60+
exclude module: 'jsr305'
61+
exclude module: 'guice'
62+
exclude module: 'slf4j-api'
63+
}
5764
bundle "org.yaml:snakeyaml:2.2"
58-
bundle "org.slf4j:slf4j-api:2.0.16"
5965
bundle "org.jcommander:jcommander:1.83", {
6066
bnd {
6167
// override/set the symbolic name

0 commit comments

Comments
 (0)