119 lines
3.6 KiB
XML
119 lines
3.6 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">
|
||
|
|
<parent>
|
||
|
|
<artifactId>uling</artifactId>
|
||
|
|
<groupId>cc.uling</groupId>
|
||
|
|
<version>1.0</version>
|
||
|
|
<relativePath>../pom.xml</relativePath>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>uling-common</artifactId>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<maven.compiler.source>8</maven.compiler.source>
|
||
|
|
<maven.compiler.target>8</maven.compiler.target>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- 获取系统信息 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.oshi</groupId>
|
||
|
|
<artifactId>oshi-core</artifactId>
|
||
|
|
<version>6.5.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.zxing</groupId>
|
||
|
|
<artifactId>javase</artifactId>
|
||
|
|
<version>3.3.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.redisson</groupId>
|
||
|
|
<artifactId>redisson</artifactId>
|
||
|
|
<version>3.12.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.jhlabs</groupId>
|
||
|
|
<artifactId>filters</artifactId>
|
||
|
|
<version>2.0.235</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.mail</groupId>
|
||
|
|
<artifactId>javax.mail</artifactId>
|
||
|
|
<version>1.6.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>fastjson</artifactId>
|
||
|
|
<version>2.0.52</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- Bean 复制 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-beanutils</groupId>
|
||
|
|
<artifactId>commons-beanutils</artifactId>
|
||
|
|
<version>1.9.4</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpcore</artifactId>
|
||
|
|
<version>4.4.6</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpmime</artifactId>
|
||
|
|
<version>4.3.3</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>fluent-hc</artifactId>
|
||
|
|
<version>4.5.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.5.2</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-httpclient</groupId>
|
||
|
|
<artifactId>commons-httpclient</artifactId>
|
||
|
|
<version>3.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.alibaba</groupId>
|
||
|
|
<artifactId>easyexcel</artifactId>
|
||
|
|
<version>4.0.3</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.14.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.poi</groupId>
|
||
|
|
<artifactId>poi-ooxml</artifactId>
|
||
|
|
<version>5.2.3</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|