From de00eeb45e3aee0cbb5f62210c05ef32bb7478b4 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 30 Nov 2021 14:22:49 +0800 Subject: [PATCH] fix --- pom.xml | 82 +++++++++++++++++++++++++++++----------- 1 files changed, 59 insertions(+), 23 deletions(-) diff --git a/pom.xml b/pom.xml index cc934d3..a844840 100644 --- a/pom.xml +++ b/pom.xml @@ -35,7 +35,58 @@ </properties> <dependencies> - + + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-netty-shaded</artifactId> + <version>1.31.0</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-netty</artifactId> + <version>1.31.0</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-okhttp</artifactId> + <version>1.31.0</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-protobuf</artifactId> + <version>1.31.0</version> + </dependency> + <dependency> + <groupId>io.grpc</groupId> + <artifactId>grpc-stub</artifactId> + <version>1.31.0</version> + </dependency> + + + + <dependency> + <groupId>org.tron.trident</groupId> + <artifactId>abi</artifactId> + <version>0.3.0</version> + <scope>system</scope> + <systemPath>${basedir}/lib/abi-0.3.0.jar</systemPath> + </dependency> + <dependency> + <groupId>org.tron.trident</groupId> + <artifactId>utils</artifactId> + <version>0.3.0</version> + <scope>system</scope> + <systemPath>${basedir}/lib/utils-0.3.0.jar</systemPath> + </dependency> + <dependency> + <groupId>org.tron.trident</groupId> + <artifactId>core</artifactId> + <version>0.3.0</version> + <scope>system</scope> + <systemPath>${basedir}/lib/core-0.3.0.jar</systemPath> + </dependency> + + <dependency> <groupId>ripple</groupId> <artifactId>ripple</artifactId> @@ -348,12 +399,14 @@ <scope>system</scope> <systemPath>${basedir}/lib/tron-sdk.jar</systemPath> </dependency> + <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>13.0</version> <scope>compile</scope> </dependency> + <dependency> <groupId>com.github.ki5fpl.tronj</groupId> <artifactId>abi</artifactId> @@ -377,28 +430,11 @@ <systemPath>${basedir}/lib/utils-0.4.0.jar</systemPath> </dependency> - - <dependency> - <groupId>org.tron.trident</groupId> - <artifactId>abi</artifactId> - <version>0.3.0</version> - <scope>system</scope> - <systemPath>${basedir}/lib/abi-0.3.0.jar</systemPath> - </dependency> - <dependency> - <groupId>org.tron.trident</groupId> - <artifactId>utils</artifactId> - <version>0.3.0</version> - <scope>system</scope> - <systemPath>${basedir}/lib/utils-0.3.0.jar</systemPath> - </dependency> - <dependency> - <groupId>org.tron.trident</groupId> - <artifactId>core</artifactId> - <version>0.3.0</version> - <scope>system</scope> - <systemPath>${basedir}/lib/core-0.3.0.jar</systemPath> - </dependency> +<!-- implementation 'io.grpc:grpc-netty-shaded:1.31.0'--> +<!-- implementation 'io.grpc:grpc-netty:1.31.0'--> +<!-- implementation 'io.grpc:grpc-okhttp:1.31.0'--> +<!-- implementation 'io.grpc:grpc-protobuf:1.31.0'--> +<!-- implementation 'io.grpc:grpc-stub:1.31.0'--> </dependencies> <build> -- Gitblit v1.9.1