mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
ENT-6637: Targeted exclude of the jgroups dependency.
This commit is contained in:
parent
aa9d9288bd
commit
4594c76259
@ -460,8 +460,6 @@ allprojects {
|
||||
// Netty-All is an uber-jar which contains every Netty module.
|
||||
// Exclude it to force us to use the individual Netty modules instead.
|
||||
exclude group: 'io.netty', module: 'netty-all'
|
||||
|
||||
exclude group: 'org.jgroups', module: 'jgroups'
|
||||
}
|
||||
runtime {
|
||||
// We never want isolated.jar on classPath, since we want to test jar being dynamically loaded as an attachment
|
||||
|
@ -55,7 +55,9 @@ dependencies {
|
||||
// TODO: remove the forced update of commons-collections and beanutils when artemis updates them
|
||||
compile "org.apache.commons:commons-collections4:${commons_collections_version}"
|
||||
compile "commons-beanutils:commons-beanutils:${beanutils_version}"
|
||||
compile "org.apache.activemq:artemis-core-client:${artemis_version}"
|
||||
compile("org.apache.activemq:artemis-core-client:${artemis_version}") {
|
||||
exclude group: 'org.jgroups', module: 'jgroups'
|
||||
}
|
||||
|
||||
// Unit testing helpers.
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
||||
|
@ -17,7 +17,9 @@ dependencies {
|
||||
// TODO: remove the forced update of commons-collections and beanutils when artemis updates them
|
||||
compile "org.apache.commons:commons-collections4:${commons_collections_version}"
|
||||
compile "commons-beanutils:commons-beanutils:${beanutils_version}"
|
||||
compile "org.apache.activemq:artemis-core-client:${artemis_version}"
|
||||
compile("org.apache.activemq:artemis-core-client:${artemis_version}") {
|
||||
exclude group: 'org.jgroups', module: 'jgroups'
|
||||
}
|
||||
compile "org.apache.activemq:artemis-commons:${artemis_version}"
|
||||
|
||||
compile "io.netty:netty-handler-proxy:$netty_version"
|
||||
@ -62,6 +64,7 @@ dependencies {
|
||||
compile ("org.apache.activemq:artemis-amqp-protocol:${artemis_version}") {
|
||||
// Gains our proton-j version from core module.
|
||||
exclude group: 'org.apache.qpid', module: 'proton-j'
|
||||
exclude group: 'org.jgroups', module: 'jgroups'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -129,11 +129,15 @@ dependencies {
|
||||
compile "commons-beanutils:commons-beanutils:${beanutils_version}"
|
||||
compile("org.apache.activemq:artemis-server:${artemis_version}") {
|
||||
exclude group: 'org.apache.commons', module: 'commons-dbcp2'
|
||||
exclude group: 'org.jgroups', module: 'jgroups'
|
||||
}
|
||||
compile("org.apache.activemq:artemis-core-client:${artemis_version}") {
|
||||
exclude group: 'org.jgroups', module: 'jgroups'
|
||||
}
|
||||
compile "org.apache.activemq:artemis-core-client:${artemis_version}"
|
||||
runtime("org.apache.activemq:artemis-amqp-protocol:${artemis_version}") {
|
||||
// Gains our proton-j version from core module.
|
||||
exclude group: 'org.apache.qpid', module: 'proton-j'
|
||||
exclude group: 'org.jgroups', module: 'jgroups'
|
||||
}
|
||||
|
||||
// Manifests: for reading stuff from the manifest file
|
||||
|
Loading…
Reference in New Issue
Block a user