New file |
| | |
| | | <?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>com.hx.gitee</groupId> |
| | | <artifactId>hx-parent</artifactId> |
| | | <version>1.0-SNAPSHOT</version> |
| | | <packaging>pom</packaging> |
| | | |
| | | <parent> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-parent</artifactId> |
| | | <version>2.0.5.RELEASE</version> |
| | | <relativePath/> |
| | | </parent> |
| | | |
| | | |
| | | <!-- 依赖版本统一管理 --> |
| | | <properties> |
| | | <mybatis.version>1.1.1</mybatis.version> |
| | | <druid.version>1.1.9</druid.version> |
| | | <druid-boot.version>1.1.23</druid-boot.version> |
| | | <fastjson.version>1.2.47</fastjson.version> |
| | | <sfjson.version>2.4</sfjson.version> |
| | | <orgApache.commons>3.9</orgApache.commons> |
| | | <commons-io>2.6</commons-io> |
| | | <orgApache.poi>3.9</orgApache.poi> |
| | | <net.sourceforge>2.6.12</net.sourceforge> |
| | | <pinyin4j>2.5.1</pinyin4j> |
| | | <commons.lang.version>2.5</commons.lang.version> |
| | | <ezmorph.version>1.0.3</ezmorph.version> |
| | | <oss.version>2.8.3</oss.version> |
| | | <jstl.api.version>1.2</jstl.api.version> |
| | | <spring.redis.version>1.4.2.RELEASE</spring.redis.version> |
| | | <cglib.version>3.1</cglib.version> |
| | | <shiro.version>1.3.2</shiro.version> |
| | | <commons-beanutils.version>1.9.3</commons-beanutils.version> |
| | | <commons-collections.version>3.2.2</commons-collections.version> |
| | | <freemarker.version>2.3.28</freemarker.version> |
| | | <java.jwt.version>3.10.3</java.jwt.version> |
| | | <jjwt.version>0.9.1</jjwt.version> |
| | | <pagehelper.version>5.1.11</pagehelper.version> |
| | | <pagehelper-boot.version>1.2.13</pagehelper-boot.version> |
| | | <mail.version>1.6.2</mail.version> |
| | | <jdk15on.version>1.66</jdk15on.version> |
| | | <dom4j.version>2.1.3</dom4j.version> |
| | | <jdom.version>1.1.3</jdom.version> |
| | | <httpcore.version>4.4.13</httpcore.version> |
| | | <httpclient.version>4.5.12</httpclient.version> |
| | | <!--mybatis自动生成--> |
| | | <mybatis.actable>1.1.1.RELEASE</mybatis.actable> |
| | | </properties> |
| | | |
| | | <!-- 声明依赖不引入 --> |
| | | <dependencyManagement> |
| | | <dependencies> |
| | | |
| | | <!-- mybatis分页 --> |
| | | <dependency> |
| | | <groupId>com.github.pagehelper</groupId> |
| | | <artifactId>pagehelper</artifactId> |
| | | <version>${pagehelper.version}</version> |
| | | </dependency> |
| | | |
| | | <!--新版mybatis分页分页--> |
| | | <dependency> |
| | | <groupId>com.github.pagehelper</groupId> |
| | | <artifactId>pagehelper-spring-boot-starter</artifactId> |
| | | <version>${pagehelper-boot.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>cglib</groupId> |
| | | <artifactId>cglib</artifactId> |
| | | <version>${cglib.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- 数据库自动生成表 --> |
| | | <dependency> |
| | | <groupId>com.gitee.sunchenbin.mybatis.actable</groupId> |
| | | <artifactId>mybatis-enhance-actable</artifactId> |
| | | <version>${mybatis.actable}</version> |
| | | </dependency> |
| | | |
| | | <!--发送邮件--> |
| | | <dependency> |
| | | <groupId>com.sun.mail</groupId> |
| | | <artifactId>javax.mail</artifactId> |
| | | <version>${mail.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- 二维码支持包 --> |
| | | <dependency> |
| | | <groupId>com.google.zxing</groupId> |
| | | <artifactId>core</artifactId> |
| | | <version>3.3.0</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>net.glxn</groupId> |
| | | <artifactId>qrgen</artifactId> |
| | | <version>1.4</version> |
| | | </dependency> |
| | | |
| | | <!-- https://mvnrepository.com/artifact/org.jdom/jdom --> |
| | | <dependency> |
| | | <groupId>org.jdom</groupId> |
| | | <artifactId>jdom</artifactId> |
| | | <version>${jdom.version}</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j --> |
| | | <dependency> |
| | | <groupId>org.dom4j</groupId> |
| | | <artifactId>dom4j</artifactId> |
| | | <version>${dom4j.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore --> |
| | | <dependency> |
| | | <groupId>org.apache.httpcomponents</groupId> |
| | | <artifactId>httpcore</artifactId> |
| | | <version>${httpcore.version}</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient --> |
| | | <dependency> |
| | | <groupId>org.apache.httpcomponents</groupId> |
| | | <artifactId>httpclient</artifactId> |
| | | <version>${httpclient.version}</version> |
| | | </dependency> |
| | | |
| | | |
| | | <dependency> |
| | | <groupId>com.auth0</groupId> |
| | | <artifactId>java-jwt</artifactId> |
| | | <version>${java.jwt.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.jsonwebtoken</groupId> |
| | | <artifactId>jjwt</artifactId> |
| | | <version>${jjwt.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.freemarker</groupId> |
| | | <artifactId>freemarker</artifactId> |
| | | <version>${freemarker.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- 字符串工具类jar:StringUtils --> |
| | | <dependency> |
| | | <groupId>org.apache.commons</groupId> |
| | | <artifactId>commons-lang3</artifactId> |
| | | <version>${orgApache.commons}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>commons-io</groupId> |
| | | <artifactId>commons-io</artifactId> |
| | | <version>${commons-io}</version> |
| | | </dependency> |
| | | |
| | | <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on --> |
| | | <dependency> |
| | | <groupId>org.bouncycastle</groupId> |
| | | <artifactId>bcprov-jdk15on</artifactId> |
| | | <version>${jdk15on.version}</version> |
| | | </dependency> |
| | | |
| | | <!-- excel2003使用的jar --> |
| | | <dependency> |
| | | <groupId>org.apache.poi</groupId> |
| | | <artifactId>poi</artifactId> |
| | | <version>${orgApache.poi}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>redis.clients</groupId> |
| | | <artifactId>jedis</artifactId> |
| | | <version>${jedis.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-data-redis</artifactId> |
| | | <version>${spring.redis.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>org.projectlombok</groupId> |
| | | <artifactId>lombok</artifactId> |
| | | <version>${lombok.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>junit</groupId> |
| | | <artifactId>junit</artifactId> |
| | | <version>${junit.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>javax.servlet.jsp.jstl</groupId> |
| | | <artifactId>jstl-api</artifactId> |
| | | <version>${jstl.api.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.aliyun.oss</groupId> |
| | | <artifactId>aliyun-sdk-oss</artifactId> |
| | | <version>${oss.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.mybatis.spring.boot</groupId> |
| | | <artifactId>mybatis-spring-boot-starter</artifactId> |
| | | <version>${mybatis.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>mysql</groupId> |
| | | <artifactId>mysql-connector-java</artifactId> |
| | | <version>${mysql.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>druid</artifactId> |
| | | <version>${druid.version}</version> |
| | | </dependency> |
| | | |
| | | <!--数据监控平台--> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>druid-spring-boot-starter</artifactId> |
| | | <version>${druid-boot.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>fastjson</artifactId> |
| | | <version>${fastjson.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.google.code.gson</groupId> |
| | | <artifactId>gson</artifactId> |
| | | <version>${gson.version}</version> |
| | | </dependency> |
| | | |
| | | <dependency> |
| | | <groupId>net.sf.json-lib</groupId> |
| | | <artifactId>json-lib</artifactId> |
| | | <version>${sfjson.version}</version> |
| | | <classifier>jdk15</classifier> |
| | | </dependency> |
| | | <!-- <dependency> |
| | | <groupId>net.sf.json-lib</groupId> |
| | | <artifactId>json-lib</artifactId> |
| | | <version>${sfjson.version}</version> |
| | | </dependency> --> |
| | | <!-- https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl --> |
| | | <dependency> |
| | | <groupId>net.sourceforge.jexcelapi</groupId> |
| | | <artifactId>jxl</artifactId> |
| | | <version>${net.sourceforge}</version> |
| | | </dependency> |
| | | <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j --> |
| | | <dependency> |
| | | <groupId>com.belerweb</groupId> |
| | | <artifactId>pinyin4j</artifactId> |
| | | <version>${pinyin4j}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-beanutils</groupId> |
| | | <artifactId>commons-beanutils</artifactId> |
| | | <version>${commons-beanutils.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-collections</groupId> |
| | | <artifactId>commons-collections</artifactId> |
| | | <version>${commons-collections.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-lang</groupId> |
| | | <artifactId>commons-lang</artifactId> |
| | | <version>${commons.lang.version}</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>net.sf.ezmorph</groupId> |
| | | <artifactId>ezmorph</artifactId> |
| | | <version>${ezmorph.version}</version> |
| | | </dependency> |
| | | </dependencies> |
| | | </dependencyManagement> |
| | | |
| | | </project> |