Administrator
7 hours ago 75ffb97146a0a15d76ae4603ccf328eb9716d798
refactor(utils): 更新异常类导入路径并添加JSON依赖

- 将 ParameterChecker 中的 FebsException 导入路径从 cc.mrbird.febs.common.exception
更新为 com.xcong.excoin.common.exception
- 在 pom.xml 中添加 org.json:json 依赖,版本号为 20230618
- 注释掉原有的 okhttp 依赖配置项
2 files modified
9 ■■■■ changed files
pom.xml 7 ●●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/modules/newPrice/utils/ParameterChecker.java 2 ●●● patch | view | raw | blame | history
pom.xml
@@ -224,6 +224,13 @@
            <version>${netty.version}</version>
        </dependency>
        <dependency>
            <groupId>org.json</groupId>
            <artifactId>json</artifactId>
            <version>20230618</version>
        </dependency>
        <!--<dependency>-->
            <!--<groupId>com.squareup.okhttp3</groupId>-->
            <!--<artifactId>okhttp</artifactId>-->
src/main/java/com/xcong/excoin/modules/newPrice/utils/ParameterChecker.java
@@ -1,6 +1,6 @@
package com.xcong.excoin.modules.newPrice.utils;
import cc.mrbird.febs.common.exception.FebsException;
import com.xcong.excoin.common.exception.FebsException;
import java.util.LinkedHashMap;