107 lines
3.8 KiB
XML
107 lines
3.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.lw.dillon</groupId>
|
|
<artifactId>dillon-ui</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>dillon-ui-common</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
<name>${project.artifactId}</name>
|
|
<description>
|
|
ui公共模块
|
|
</description>
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<openfeign.version>13.5</openfeign.version>
|
|
</properties>
|
|
<dependencies>
|
|
<!--openfeign-->
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-core</artifactId>
|
|
<version>${openfeign.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-okhttp</artifactId>
|
|
<version>${openfeign.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-ribbon</artifactId>
|
|
<version>${openfeign.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-gson</artifactId>
|
|
<version>${openfeign.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-jackson</artifactId>
|
|
<version>${openfeign.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-slf4j</artifactId>
|
|
<version>${openfeign.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-hystrix</artifactId>
|
|
<version>${openfeign.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-form</artifactId>
|
|
<version>${openfeign.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.netflix.ribbon</groupId>
|
|
<artifactId>ribbon-httpclient</artifactId>
|
|
<version>2.7.18</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.openfeign.form</groupId>
|
|
<artifactId>feign-form-spring</artifactId>
|
|
<version>3.8.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>1.7.32</version> <!-- 适当的版本号 -->
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lw.dillon</groupId>
|
|
<artifactId>dillon-module-system-biz</artifactId>
|
|
<version>${revision}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.belerweb</groupId>
|
|
<artifactId>pinyin4j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.java-websocket</groupId>
|
|
<artifactId>Java-WebSocket</artifactId>
|
|
<version>1.5.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.lw.dillon</groupId>
|
|
<artifactId>dillon-module-infra-biz</artifactId>
|
|
<version>2.1.0-jdk8-snapshot</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |