Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 15 additions & 18 deletions integration-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,8 @@ repositories {
maven { url "https://splunk.jfrog.io/splunk/ext-releases-local" }
}
ext {
besuPluginVersion = '25.2.1'
besuInternalVersion = '25.2.1'
besuInternalCryptoVersion = '23.1.3'
besuCryptoDepVersion = '1.1.2'
besuBlsVersion = '1.0.0'
besuDepVersion = '25.10.0'
besuNativeDepVersion = '1.4.0'
Comment on lines +12 to +13
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I hope this simplification hasn't side effects, to better understand, is there a reason to keep some of the dependencies on older version: besuInternalCryptoVersion = '23.1.3' and besuBlsVersion = '1.0.0'?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

they were kept like this because we were checking latest versions on the artifact ID without checking if the artefact ID was updated or not, ex metrics-core -> besu-metrics-core

}

def withoutAbi = { exclude group: 'org.web3j', module: 'abi' }
Expand All @@ -31,19 +28,19 @@ dependencies {
// We dont want to pull the web3j version from unit
exclude group: 'org.web3j'
}
testImplementation "org.hyperledger.besu:plugin-api:$besuPluginVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:api:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:config:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:core:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:crypto:$besuInternalCryptoVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:rlp:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:kvstore:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:metrics-core:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:trie:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:util:$besuInternalVersion",withoutAbi
testImplementation "org.hyperledger.besu:bls12-381:$besuBlsVersion",withoutAbi
testImplementation "org.hyperledger.besu:secp256k1:$besuCryptoDepVersion",withoutAbi
testImplementation "org.hyperledger.besu:besu-plugin-api:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-app:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-ethereum-api:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-config:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-ethereum-core:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-crypto-services:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-ethereum-rlp:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-services-kvstore:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-metrics-core:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-ethereum-trie:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu.internal:besu-util:$besuDepVersion",withoutAbi
testImplementation "org.hyperledger.besu:gnark:$besuNativeDepVersion",withoutAbi
testImplementation "org.hyperledger.besu:secp256k1:$besuNativeDepVersion",withoutAbi
}


Expand Down