Skip to content

Commit

Permalink
Merge branch 'master' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
abirembaut committed Feb 7, 2024
2 parents a8f6ed7 + 5d8600b commit 00fad9a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
5 changes: 4 additions & 1 deletion bonita-engine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ dependencyManagement {
dependency("org.restlet.jee:org.restlet.ext.servlet:${Deps.restletVersion}") {
exclude "org.restlet.jee:org.restlet"
}
dependency "org.restlet.jse:org.restlet.ext.jackson:${Deps.restletVersion}"
dependency("org.restlet.jse:org.restlet.ext.jackson:${Deps.restletVersion}") {
exclude "org.codehaus.woodstox:woodstox-core-asl"
exclude "org.codehaus.woodstox:stax2-api"
}
// Specify woodstox version to override the version pulled by jackson-dataformat-xml (transitive dep of restlet)
dependency "com.fasterxml.woodstox:woodstox-core:${Deps.woodstoxCoreVersion}"
dependency "com.googlecode.json-simple:json-simple:${Deps.jsonSimpleVersion}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ dependencies {
testImplementation "org.restlet.jse:org.restlet:${Deps.restletVersion}"
}

configurations {
configureEach {
resolutionStrategy.force "org.codehaus.woodstox:stax2-api:${Deps.woodstoxStax2ApiVersion}"
}
}

java {
withSourcesJar()
}
Expand Down
6 changes: 5 additions & 1 deletion bpm/bonita-web-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ dependencies {
implementation("org.restlet.jee:org.restlet.ext.servlet:${Deps.restletVersion}") {
exclude(group: "org.restlet.jee", module: "org.restlet")
}
implementation "org.restlet.jse:org.restlet.ext.jackson:${Deps.restletVersion}"
implementation("org.restlet.jse:org.restlet.ext.jackson:${Deps.restletVersion}") {
exclude(group: "org.codehaus.woodstox", module: "woodstox-core-asl")
exclude(group: "org.codehaus.woodstox", module: "stax2-api")
}
implementation "com.fasterxml.woodstox:woodstox-core:${Deps.woodstoxCoreVersion}"
implementation "org.codehaus.groovy:groovy:${Deps.groovyVersion}"
implementation "org.apache.xbean:xbean-classloader:${Deps.xbeanClassloaderVersion}"
implementation "org.springframework:spring-core:${Deps.springVersion}"
Expand Down
1 change: 0 additions & 1 deletion buildSrc/src/main/groovy/Deps.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ class Deps {
public static String jgettextVersion = "0.13"
public static String hamcrestVersion = "2.1"
public static String woodstoxCoreVersion = "6.4.0"
public static String woodstoxStax2ApiVersion = "3.1.4"
public static String keycloakVersion = "21.1.2"
public static String xmlsecVersion = "2.2.6"
public static String bouncyCastleVersion = "1.77"
Expand Down

0 comments on commit 00fad9a

Please sign in to comment.