From b1da105f86dfcd72e1f2fe94a694dcbeb6b972c8 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Thu, 24 Mar 2022 18:15:16 +0800 Subject: [PATCH] add admin-user modules --- pom.xml | 100 ++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 77 insertions(+), 23 deletions(-) diff --git a/pom.xml b/pom.xml index 37b0cf8..d612920 100644 --- a/pom.xml +++ b/pom.xml @@ -233,29 +233,6 @@ <artifactId>spring-boot-starter-websocket</artifactId> </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>io.vertx</groupId> <artifactId>vertx-core</artifactId> @@ -305,6 +282,78 @@ <artifactId>bcprov-jdk15on</artifactId> <version>1.68</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>ztron-sdk</groupId> + <artifactId>ztron-sdk</artifactId> + <version>0.0.1</version> + <scope>system</scope> + <systemPath>${basedir}/lib/tron-sdk.jar</systemPath> + </dependency> + + <dependency> + <groupId>org.web3j</groupId> + <artifactId>core</artifactId> + <version>4.5.5</version> + </dependency> + + + <dependency> + <groupId>com.squareup.okhttp3</groupId> + <artifactId>okhttp</artifactId> + <version>3.6.0</version> + </dependency> + + <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor --> + <dependency> + <groupId>com.squareup.okhttp3</groupId> + <artifactId>logging-interceptor</artifactId> + <version>3.6.0</version> + </dependency> + + <!-- https://mvnrepository.com/artifact/org.web3j/parity --> + <dependency> + <groupId>org.web3j</groupId> + <artifactId>parity</artifactId> + <version>4.5.10</version> + <exclusions> + <exclusion> + <artifactId>core</artifactId> + <groupId>org.web3j</groupId> + </exclusion> + </exclusions> + </dependency> + + + <dependency> + <groupId>com.huobi.sdk</groupId> + <artifactId>huobi-client</artifactId> + <version>1.0.8-SNAPSHOT</version> + <scope>system</scope> + <systemPath>${basedir}/lib/huobi-client-1.0.8-SNAPSHOT.jar</systemPath> + </dependency> </dependencies> <build> @@ -312,7 +361,12 @@ <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> + <configuration> + <mainClass>cc.mrbird.febs.FebsShiroApplication</mainClass> + <includeSystemScope>true</includeSystemScope> + </configuration> </plugin> </plugins> + </build> </project> -- Gitblit v1.9.1