Skip to content

Commit 9cb8a99

Browse files
authored
Merge pull request #6928 from thc202/spiderAjax/log-libs
spiderAjax: fix logging dependencies
2 parents 6822912 + 1d239b4 commit 9cb8a99

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

addOns/spiderAjax/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ All notable changes to this add-on will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## Unreleased
7-
7+
### Fixed
8+
- Correct bundled logging dependencies.
89

910
## [23.27.0] - 2025-11-04
1011
### Added

addOns/spiderAjax/spiderAjax.gradle.kts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ dependencies {
7878
compileOnly(libs.log4j.core)
7979

8080
implementation(files("lib/crawljax-core-3.7.1.jar"))
81+
implementation(libs.log4j.slf4j2)
8182
implementation(libs.spiderAjax.apache.commons.math)
8283
implementation(libs.spiderAjax.metricsCore)
8384
implementation(libs.spiderAjax.findBugsAnnotations)
@@ -87,12 +88,7 @@ dependencies {
8788
}
8889
implementation(libs.spiderAjax.jcipAnnotations)
8990
implementation(libs.spiderAjax.nekohtml)
90-
implementation(libs.spiderAjax.jclOverSlf4j)
9191
implementation(libs.spiderAjax.julToSlf4j)
92-
implementation(libs.spiderAjax.slf4j.log4j12) {
93-
// Provided by ZAP.
94-
exclude(group = "log4j", module = "log4j")
95-
}
9692
implementation(libs.spiderAjax.xmlunit)
9793

9894
testImplementation(libs.log4j.core)

gradle/libs.versions.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,9 @@ spiderAjax-apache-commons-math = "commons-math:commons-math:1.2"
9393
spiderAjax-findBugsAnnotations = "com.google.code.findbugs:jsr305:3.0.2"
9494
spiderAjax-guiceAssistedInject = "com.google.inject.extensions:guice-assistedinject:5.0.1"
9595
spiderAjax-jcipAnnotations = "net.jcip:jcip-annotations:1.0"
96-
spiderAjax-jclOverSlf4j = { module = "org.slf4j:jcl-over-slf4j", version.ref = "slf4j" }
9796
spiderAjax-julToSlf4j = { module = "org.slf4j:jul-to-slf4j", version.ref = "slf4j" }
9897
spiderAjax-metricsCore = "com.codahale.metrics:metrics-core:3.0.2"
9998
spiderAjax-nekohtml = "net.sourceforge.nekohtml:nekohtml:1.9.22"
100-
spiderAjax-slf4j-log4j12 = { module = "org.slf4j:slf4j-log4j12", version.ref = "slf4j" }
10199
spiderAjax-xmlunit = "xmlunit:xmlunit:1.6"
102100
sqliplugin-jdom = "org.jdom:jdom:2.0.2"
103101
test-hamcrest = "org.hamcrest:hamcrest-library:3.0"

0 commit comments

Comments
 (0)