2018-01-03 21:57:25 +08:00
|
|
|
<?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>
|
2018-06-11 20:21:04 +08:00
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-parent</artifactId>
|
2024-07-19 08:54:05 +08:00
|
|
|
<version>5.8.1-SNAPSHOT</version>
|
2018-06-11 20:21:04 +08:00
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
|
|
|
</parent>
|
2018-01-03 21:57:25 +08:00
|
|
|
|
|
|
|
|
<artifactId>jeesite-common</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>JeeSite Common</name>
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
<inceptionYear>2013-Now</inceptionYear>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2022-04-26 10:44:44 +08:00
|
|
|
|
|
|
|
|
<!-- Servlet Api -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2018-01-03 21:57:25 +08:00
|
|
|
|
|
|
|
|
<!-- Apache Commons -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
</dependency>
|
2021-11-16 10:17:59 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-text</artifactId>
|
2024-07-07 19:10:28 +08:00
|
|
|
<version>${commons-text.version}</version>
|
2021-11-16 10:17:59 +08:00
|
|
|
</dependency>
|
2018-09-22 21:12:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>${commons-io.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Java serialization -->
|
|
|
|
|
<dependency>
|
2018-01-20 00:13:07 +08:00
|
|
|
<groupId>de.ruedigermoeller</groupId>
|
|
|
|
|
<artifactId>fst</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${fst.version}</version>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Jackson json -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-03-01 22:27:01 +08:00
|
|
|
<!-- Fast json -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-01-03 21:57:25 +08:00
|
|
|
<!-- XPath xml -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Snake YAML -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
2023-06-12 15:54:28 +08:00
|
|
|
<version>${snakeyaml.version}</version>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2018-09-22 21:12:45 +08:00
|
|
|
<!-- Apache HTTP -->
|
2018-01-03 21:57:25 +08:00
|
|
|
<dependency>
|
2018-09-22 21:12:45 +08:00
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
2024-07-23 19:37:19 +08:00
|
|
|
<version>${httpclient.version}</version>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Email -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-email</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${commons-email.version}</version>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
2020-09-17 12:34:35 +08:00
|
|
|
<!-- <dependency>
|
2018-01-03 21:57:25 +08:00
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
|
<artifactId>activation</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${activation.version}</version>
|
2020-09-17 12:34:35 +08:00
|
|
|
</dependency> -->
|
2018-01-03 21:57:25 +08:00
|
|
|
|
|
|
|
|
<!-- User Agent -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${UserAgentUtils.version}</version>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
2018-12-31 16:37:50 +08:00
|
|
|
<!-- 图片Meta获取
|
2018-01-03 21:57:25 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.drewnoakes</groupId>
|
|
|
|
|
<artifactId>metadata-extractor</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${metadata-extractor.version}</version>
|
2018-12-31 16:37:50 +08:00
|
|
|
</dependency> -->
|
2024-07-07 19:10:28 +08:00
|
|
|
<!-- 缩略图工具 -->
|
2018-01-03 21:57:25 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.coobird</groupId>
|
|
|
|
|
<artifactId>thumbnailator</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${thumbnailator.version}</version>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
2018-11-24 20:38:03 +08:00
|
|
|
<!-- 支持CMYK图片 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.twelvemonkeys.imageio</groupId>
|
|
|
|
|
<artifactId>imageio-jpeg</artifactId>
|
|
|
|
|
<version>${twelvemonkeys.version}</version>
|
|
|
|
|
</dependency>
|
2024-07-07 19:10:28 +08:00
|
|
|
<!-- 图片验证码生成 -->
|
2018-01-03 21:57:25 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.bladejava</groupId>
|
|
|
|
|
<artifactId>blade-patchca</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${blade-patchca.version}</version>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
<!-- File MimeType ContentType -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.jmimemagic</groupId>
|
|
|
|
|
<artifactId>jmimemagic</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${jmimemagic.version}</version>
|
2018-01-03 21:57:25 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-xc</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-07-07 19:10:28 +08:00
|
|
|
<!-- 条形码、二维码生成 -->
|
2018-09-22 21:12:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
|
<version>${zxing.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
|
<version>${zxing.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-09-17 12:34:35 +08:00
|
|
|
<!-- Office Tools -->
|
2018-09-22 21:12:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
|
<version>${poi.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>${poi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
|
|
|
<version>${poi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-07-23 19:37:19 +08:00
|
|
|
<!-- Pinyin4j -->
|
2018-01-27 17:12:09 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.belerweb</groupId>
|
|
|
|
|
<artifactId>pinyin4j</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<version>${pinyin4j.version}</version>
|
2018-01-27 17:12:09 +08:00
|
|
|
</dependency>
|
2024-07-23 19:37:19 +08:00
|
|
|
|
|
|
|
|
<!-- BC Provider -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
|
|
|
<version>${bcprov.version}</version>
|
|
|
|
|
</dependency>
|
2018-01-27 17:12:09 +08:00
|
|
|
|
2018-09-22 21:12:45 +08:00
|
|
|
<!-- Logging begin -->
|
2018-01-03 21:57:25 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- common-logging 实际调用 slf4j -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- jdk logging 实际调用 slf4j -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- log4j 实际调用 slf4j -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- slf4j logback 实现 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
|
</dependency>
|
2018-09-22 21:12:45 +08:00
|
|
|
<!-- Logging end -->
|
2018-01-03 21:57:25 +08:00
|
|
|
|
2018-09-22 21:12:45 +08:00
|
|
|
<!-- Spring begin -->
|
2018-01-03 21:57:25 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
2018-10-16 22:07:34 +08:00
|
|
|
<artifactId>spring-beans</artifactId>
|
2022-04-18 17:07:23 +08:00
|
|
|
<optional>true</optional>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
2018-10-16 22:07:34 +08:00
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
|
<optional>true</optional>
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependency>
|
2018-09-22 21:12:45 +08:00
|
|
|
<!-- Spring end -->
|
2018-01-03 21:57:25 +08:00
|
|
|
|
|
|
|
|
<!-- JUnit Test -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
</dependency>
|
2023-06-12 15:54:28 +08:00
|
|
|
|
2018-01-03 21:57:25 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
2024-07-07 19:10:28 +08:00
|
|
|
<developers>
|
2018-01-03 21:57:25 +08:00
|
|
|
<developer>
|
|
|
|
|
<id>thinkgem</id>
|
|
|
|
|
<name>WangZhen</name>
|
|
|
|
|
<email>thinkgem at 163.com</email>
|
|
|
|
|
<roles><role>Project lead</role></roles>
|
2024-07-07 19:10:28 +08:00
|
|
|
<timezone>+8</timezone>
|
2018-01-03 21:57:25 +08:00
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
|
<name>JeeSite</name>
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
|
|
</project>
|