Skip to content

Commit

Permalink
Updated bitcoinj version
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoreliovlabs committed Feb 23, 2022
1 parent de970f1 commit cc0c69f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
34 changes: 34 additions & 0 deletions DONT-COMMIT-settings.gradle.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

includeBuild('/Users/reynoldmorel/Documents/projects/rskj/') {
dependencySubstitution {
all { DependencySubstitution dependency ->
if (dependency.requested instanceof ModuleComponentSelector
&& dependency.requested.group == 'co.rsk'
&& dependency.requested.module == 'rskj-core'
&& dependency.requested.version.endsWith('SNAPSHOT')) {
def targetProject = project(":${dependency.requested.module}")
if (targetProject != null) {
println('---- USING LOCAL ' + dependency.requested.displayName +' PROJECT ----')
dependency.useTarget targetProject
}
}
}
}
}

includeBuild('/Users/reynoldmorel/Documents/projects/bitcoinj/') {
dependencySubstitution {
all { DependencySubstitution dependency ->
if (dependency.requested instanceof ModuleComponentSelector
&& dependency.requested.group == 'org.bitcoinj'
&& dependency.requested.module == 'core'
&& dependency.requested.version.endsWith('rsk-3')) {
def targetProject = project(":${dependency.requested.module}")
if (targetProject != null) {
println('---- USING LOCAL ' + dependency.requested.displayName +' PROJECT ----')
dependency.useTarget targetProject
}
}
}
}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ tasks.withType(AbstractArchiveTask) {
}

ext {
bitcoinjcoreVersion = '0.15.6-rsk-2'
bitcoinjcoreVersion = '0.15.6-rsk-3'
bitcoinjVersion = '0.14.4-rsk-11'
commonsLang3Version = '3.5'
commonsIoVersion = '2.5'
Expand Down

0 comments on commit cc0c69f

Please sign in to comment.