Skip to content

Commit

Permalink
Merge pull request #89 from tronprotocol/release_v2.2.5
Browse files Browse the repository at this point in the history
Release v2.2.5 merge to main
  • Loading branch information
CodeNinjaEvan authored Jan 23, 2025
2 parents 54d1906 + 499a649 commit ac3fe8b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ repositories {
Then add the required packages as dependencies. Please add dependencies locally.
```bash
dependencies {
implementation group: 'io.github.tronprotocol', name: 'libp2p', version: '2.2.4'
implementation group: 'io.github.tronprotocol', name: 'libp2p', version: '2.2.5'
}
```
Or if you are using the jar files as your dependencies:
Expand All @@ -66,7 +66,7 @@ dependencies {
<dependency>
<groupId>io.github.tronprotocol</groupId>
<artifactId>libp2p</artifactId>
<version>2.2.4</version>
<version>2.2.5</version>
</dependency>
```

Expand Down
23 changes: 15 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.github.tronprotocol'
version '2.2.4'
version '2.2.5'

buildscript {
repositories {
Expand All @@ -18,7 +18,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'application'

def protobufVersion = "3.25.5"
def grpcVersion = "1.52.1"
def grpcVersion = "1.60.0"

mainClassName = 'org.tron.p2p.example.StartApp'

Expand Down Expand Up @@ -57,22 +57,26 @@ dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'

implementation group: 'org.xerial.snappy', name: 'snappy-java', version: '1.1.10.5'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.9'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.9'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.13'
implementation group: 'ch.qos.logback', name: 'logback-core', version: '1.2.13'
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: protobufVersion
implementation group: 'com.google.protobuf', name: 'protobuf-java-util', version: protobufVersion
implementation group: 'io.grpc', name: 'grpc-netty', version: grpcVersion
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.69'
implementation group: 'org.bouncycastle', name: 'bcprov-jdk18on', version: '1.79'
implementation group: 'org.bouncycastle', name: 'bcpkix-jdk18on', version: '1.79'

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
implementation group: 'commons-cli', name: 'commons-cli', version: '1.5.0'

compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.12'
testImplementation group: 'org.projectlombok', name: 'lombok', version: '1.18.12'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.12'

implementation group: 'dnsjava', name: 'dnsjava', version: '3.5.2'
implementation group: 'org.web3j', name: 'crypto', version: '5.0.0'
implementation group: 'dnsjava', name: 'dnsjava', version: '3.6.2'
implementation group: 'org.web3j', name: 'crypto', version: '5.0.0',{
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
}
implementation('software.amazon.awssdk:route53:2.18.41', {
exclude group: 'io.netty', module: 'netty-codec-http2'
exclude group: 'io.netty', module: 'netty-codec-http'
Expand All @@ -85,7 +89,10 @@ dependencies {
exclude group: 'io.netty', module: 'netty-transport-classes-epoll'
exclude group: 'io.netty', module: 'netty-transport-native-unix-common'
})
implementation group: 'com.aliyun', name: 'alidns20150109', version: '3.0.1'
implementation group: 'com.aliyun', name: 'alidns20150109', version: '3.0.1',{
exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
exclude group: 'org.bouncycastle', module: 'bcpkix-jdk15on'
}
}

tasks.matching { it instanceof Test }.all {
Expand Down

0 comments on commit ac3fe8b

Please sign in to comment.