|
|
|
|
<?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>
|
|
|
|
|
<groupId>dsideal</groupId>
|
|
|
|
|
<artifactId>dsSso</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.dsideal</groupId>
|
|
|
|
|
<artifactId>dsProject</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
|
|
<artifactId>jfinal</artifactId>
|
|
|
|
|
<version>${jfinal.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
|
|
<artifactId>jfinal-undertow</artifactId>
|
|
|
|
|
<version>${jfinal-undertow.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jfinal</groupId>
|
|
|
|
|
<artifactId>cos</artifactId>
|
|
|
|
|
<version>${jfinal-cos.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.icecooly</groupId>
|
|
|
|
|
<artifactId>FastHttpClient</artifactId>
|
|
|
|
|
<version>1.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.huaweicloud</groupId>
|
|
|
|
|
<artifactId>esdk-obs-java</artifactId>
|
|
|
|
|
<version>3.21.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--引用json库-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--引入定时器组件-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>it.sauronsoftware.cron4j</groupId>
|
|
|
|
|
<artifactId>cron4j</artifactId>
|
|
|
|
|
<version>2.2.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--引用sftp组件-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
|
|
<artifactId>jsch</artifactId>
|
|
|
|
|
<version>0.1.55</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--引用ssh组件-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.ethz.ganymed</groupId>
|
|
|
|
|
<artifactId>ganymed-ssh2</artifactId>
|
|
|
|
|
<version>262</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--引用druid-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid</artifactId>
|
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--日志logback-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
<version>1.2.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--引用fastjson!-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--引用jsoup防止xss攻击-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.14.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--引用mysql connector -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--引用gson-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>2.8.8</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-email</artifactId>
|
|
|
|
|
<version>1.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
|
<version>${snakeyaml.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
<version>1.6.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Redis客户端 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
|
<version>${jedis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<version>1.17.2</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.dsideal</groupId>
|
|
|
|
|
<artifactId>dsUtils</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>21</source>
|
|
|
|
|
<target>21</target>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<!-- java21 保留参数名编译参数 -->
|
|
|
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|