Skip to content

Commit

Permalink
Removed duplicated classes from bitcoin package
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoreliovlabs committed Mar 29, 2022
1 parent f183496 commit a0fcdb1
Show file tree
Hide file tree
Showing 9 changed files with 103 additions and 633 deletions.
Binary file added .DS_Store
Binary file not shown.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
buildscript {
repositories {
mavenCentral()
maven {
url "https://deps.rsklabs.io"
}
jcenter()
}

Expand All @@ -10,6 +14,10 @@ buildscript {

allprojects {
repositories {
mavenCentral()
maven {
url "https://deps.rsklabs.io"
}
jcenter()
}

Expand Down
Binary file added core/.DS_Store
Binary file not shown.
21 changes: 20 additions & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ apply plugin: 'java'
apply plugin: 'com.google.protobuf'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '0.15.6-rsk-2'
version = '0.15.6-rsk-3'
archivesBaseName = 'bitcoinj-core'
eclipse.project.name = 'bitcoinj-core'

dependencies {
compile 'co.rsk:native:1.2.1'
compile 'org.bouncycastle:bcprov-jdk15to18:1.63'
implementation 'com.google.guava:guava:28.1-android'
compile 'com.google.protobuf:protobuf-java:3.6.1'
Expand Down Expand Up @@ -79,6 +81,23 @@ task generatePom(dependsOn: jar) {
}
}

publishing {
publications {
bitcoinj(MavenPublication) {
pom {
from components.java
licenses {
license {
name = 'GNU General Public License (GPL) version 3.0'
url = 'http://www.gnu.org/licenses/gpl-3.0.txt'
distribution = 'repo'
}
}
}
}
}
}

artifacts {
archives sourcesJar
archives javadocJar
Expand Down
Loading

0 comments on commit a0fcdb1

Please sign in to comment.