<?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.hx.gitee</groupId>
|
<artifactId>hx-parent</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
</parent>
|
|
<artifactId>hx-common</artifactId>
|
<packaging>jar</packaging>
|
|
<dependencies>
|
|
<!--对象与XML处理-->
|
<dependency>
|
<groupId>javax.xml.bind</groupId>
|
<artifactId>jaxb-api</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.9</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>dom4j</artifactId>
|
<groupId>dom4j</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!--腾讯云 cos-->
|
<dependency>
|
<groupId>com.qcloud</groupId>
|
<artifactId>cos_api</artifactId>
|
</dependency>
|
|
<!--发送邮件-->
|
<dependency>
|
<groupId>com.sun.mail</groupId>
|
<artifactId>javax.mail</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-csv</artifactId>
|
<version>1.6</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.aliyun.oss</groupId>
|
<artifactId>aliyun-sdk-oss</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.huaweicloud</groupId>
|
<artifactId>esdk-obs-java</artifactId>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
|
<dependency>
|
<groupId>org.bouncycastle</groupId>
|
<artifactId>bcprov-jdk15on</artifactId>
|
</dependency>
|
|
<!--微信支付用到的包-->
|
<dependency>
|
<groupId>org.dom4j</groupId>
|
<artifactId>dom4j</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.jdom</groupId>
|
<artifactId>jdom</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpcore</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>cglib</groupId>
|
<artifactId>cglib</artifactId>
|
</dependency>
|
<!--<dependency>
|
<groupId>log4j</groupId>
|
<artifactId>log4j</artifactId>
|
</dependency>-->
|
|
<!--生成二维码支持包-->
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>net.glxn</groupId>
|
<artifactId>qrgen</artifactId>
|
</dependency>
|
|
<!-- 字符串工具类jar:StringUtils -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
</dependency>
|
<!-- excel2003使用的jar -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.auth0</groupId>
|
<artifactId>java-jwt</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
<artifactId>jstl-api</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>jstl</artifactId>
|
</dependency>
|
|
<!-- mybatis自动生成 -->
|
<dependency>
|
<groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
|
<artifactId>mybatis-enhance-actable</artifactId>
|
</dependency>
|
|
<!-- 模板生成jar -->
|
<dependency>
|
<groupId>org.freemarker</groupId>
|
<artifactId>freemarker</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.slf4j</groupId>
|
<artifactId>jcl-over-slf4j</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>org.hibernate</groupId>
|
<artifactId>hibernate-validator</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-logging</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.mybatis.spring.boot</groupId>
|
<artifactId>mybatis-spring-boot-starter</artifactId><exclusions>
|
<exclusion>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-logging</artifactId>
|
</exclusion>
|
</exclusions>
|
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<scope>runtime</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.google.code.gson</groupId>
|
<artifactId>gson</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sf.json-lib</groupId>
|
<artifactId>json-lib</artifactId>
|
<classifier>jdk15</classifier>
|
</dependency>
|
|
<dependency>
|
<groupId>com.belerweb</groupId>
|
<artifactId>pinyin4j</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sourceforge.jexcelapi</groupId>
|
<artifactId>jxl</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<exclusions>
|
<exclusion>
|
<artifactId>commons-logging</artifactId>
|
<groupId>commons-logging</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>commons-collections</groupId>
|
<artifactId>commons-collections</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>commons-lang</groupId>
|
<artifactId>commons-lang</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>net.sf.ezmorph</groupId>
|
<artifactId>ezmorph</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.dtflys.forest</groupId>
|
<artifactId>spring-boot-starter-forest</artifactId>
|
<version>1.5.0-RC2</version>
|
</dependency>
|
|
<!-- redis -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<finalName>hx-demoboot</finalName>
|
<resources>
|
<resource>
|
<directory>src/main/java</directory>
|
<includes>
|
<include>**/*.properties</include>
|
<include>**/*.xml</include>
|
<include>**/*.tld</include>
|
<include>**/*.tpl</include>
|
</includes>
|
<filtering>false</filtering>
|
</resource>
|
<resource>
|
<directory>src/main/resources</directory>
|
<excludes>
|
<exclude>profile-active/**</exclude>
|
</excludes>
|
</resource>
|
<resource>
|
<directory>${runtime.env}</directory>
|
</resource>
|
</resources>
|
</build>
|
|
</project>
|