Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(*): update jar repository
Browse files Browse the repository at this point in the history
  1. remove jcenter and jitpack package repository
halibobo1205 committed Dec 28, 2022
1 parent 0e58daf commit 9e6ddab
Showing 5 changed files with 7 additions and 10 deletions.
1 change: 0 additions & 1 deletion actuator/build.gradle
Original file line number Diff line number Diff line change
@@ -20,7 +20,6 @@ dependencies {

compile "org.slf4j:jcl-over-slf4j:$slf4jVersion"
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.69'
compile 'com.github.tronprotocol:zksnark-java-sdk:master-SNAPSHOT'
compile group: 'commons-codec', name: 'commons-codec', version: '1.11'
compile 'org.reflections:reflections:0.9.11'
}
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -17,20 +17,20 @@ subprojects {
buildscript {
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.12'
classpath 'com.github.jengelman.gradle.plugins:shadow:5.2.0'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.1'
classpath "gradle.plugin.com.github.johnrengelman:shadow:7.1.2"
}
}

repositories {
mavenLocal()
mavenCentral()
maven { url 'https://repo.spring.io/plugins-release' }
maven { url 'https://jitpack.io' }
}

dependencies {
2 changes: 1 addition & 1 deletion chainbase/build.gradle
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ dependencies {
compile "org.fusesource.jansi:jansi:$jansiVersion"
compile group: 'org.rocksdb', name: 'rocksdbjni', version: '5.15.10'
compile group: 'com.typesafe', name: 'config', version: '1.3.2'
compile 'com.github.tronprotocol:zksnark-java-sdk:master-SNAPSHOT'
compile 'io.github.tronprotocol:zksnark-java-sdk:1.0.0'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.8.5'
compile project(":protocol")
compile project(":common")
1 change: 0 additions & 1 deletion consensus/build.gradle
Original file line number Diff line number Diff line change
@@ -16,7 +16,6 @@ dependencies {
testImplementation "org.testng:testng:$testNgVersion"
compile "org.slf4j:jcl-over-slf4j:$slf4jVersion"
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.69'
compile 'com.github.tronprotocol:zksnark-java-sdk:master-SNAPSHOT'
compile group: 'commons-codec', name: 'commons-codec', version: '1.11'
}

3 changes: 1 addition & 2 deletions framework/build.gradle
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ dependencies {

compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.69'

compile group: 'com.github.tronprotocol', name: 'libp2p', version: 'test-v0.1.5'
compile group: 'io.github.tronprotocol', name: 'libp2p', version: '0.1.1'

compile group: 'com.typesafe', name: 'config', version: '1.3.2'

@@ -89,7 +89,6 @@ dependencies {
compile group: 'org.pf4j', name: 'pf4j', version: '2.5.0'

compile group: 'org.zeromq', name: 'jeromq', version: '0.5.0'
compile 'com.github.tronprotocol:zksnark-java-sdk:master-SNAPSHOT'
compile project(":chainbase")
compile project(":protocol")
compile project(":actuator")

0 comments on commit 9e6ddab

Please sign in to comment.