422 lines
14 KiB
XML
422 lines
14 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/maven-v4_0_0.xsd">
|
||
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<groupId>net.htjs</groupId>
|
||
<artifactId>hnlg_zzsglxt</artifactId>
|
||
<version>1.0-SNAPSHOT</version>
|
||
<packaging>jar</packaging>
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>1.5.2.RELEASE</version>
|
||
</parent>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<java.version>1.8</java.version>
|
||
<log4j.version>1.2.12</log4j.version>
|
||
</properties>
|
||
|
||
<build>
|
||
<plugins>
|
||
<!-- maven插件 -->
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<configuration>
|
||
<fork>true</fork>
|
||
<includeSystemScope>true</includeSystemScope>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>repackage</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<!-- maven默认jdk版本 -->
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<configuration>
|
||
<source>1.8</source>
|
||
<target>1.8</target>
|
||
<compilerArguments>
|
||
<extdirs>lib/</extdirs>
|
||
</compilerArguments>
|
||
|
||
</configuration>
|
||
</plugin>
|
||
|
||
|
||
|
||
|
||
|
||
<!-- 热部署 添加时间:2018-03-02 17:09 -->
|
||
<!--<plugin>-->
|
||
<!--<groupId>org.springframework.boot</groupId>-->
|
||
<!--<artifactId>spring-boot-maven-plugin</artifactId>-->
|
||
<!--<configuration>-->
|
||
<!--<fork>true</fork>-->
|
||
<!--<addResources>true</addResources>-->
|
||
<!--</configuration>-->
|
||
<!--</plugin>-->
|
||
</plugins>
|
||
<!--<resources>
|
||
<resource>
|
||
<directory>src/main/resources</directory>
|
||
<targetPath>META-INF/resources</targetPath>
|
||
<includes>
|
||
<include>**/**</include>
|
||
</includes>
|
||
</resource>
|
||
<resource>
|
||
<directory>src/main/resources</directory>
|
||
<filtering>true</filtering>
|
||
</resource>
|
||
</resources>-->
|
||
|
||
</build>
|
||
|
||
<dependencies>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.session</groupId>
|
||
<artifactId>spring-session-data-redis</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>redis.clients</groupId>
|
||
<artifactId>jedis</artifactId>
|
||
<version>2.9.0</version>
|
||
<type>jar</type>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<!--redis分布式锁使用-->
|
||
<dependency>
|
||
<groupId>org.redisson</groupId>
|
||
<artifactId>redisson</artifactId>
|
||
<version>3.3.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>8.0.15</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.oracle</groupId>
|
||
<artifactId>ojdbc6</artifactId>
|
||
<version>11.2.0.3</version>
|
||
</dependency>
|
||
|
||
<!-- 测试junit依赖 -->
|
||
<dependency>
|
||
<groupId>com.loong</groupId>
|
||
<artifactId>core</artifactId>
|
||
<version>4.0</version>
|
||
<scope>system</scope>
|
||
<systemPath>${pom.basedir}/src/main/resources/lib/core-4.0.jar</systemPath>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>com.loong</groupId>
|
||
<artifactId>jsonlib</artifactId>
|
||
<version>2.4</version>
|
||
<scope>system</scope>
|
||
<systemPath>${pom.basedir}/src/main/resources/lib/jsonlib-2.4-jdk13.jar</systemPath>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<!-- 生产监控管理 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
<exclusions>
|
||
<!-- 不使用logback -->
|
||
<exclusion>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-logging</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<!--web应用基本环境配置 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<!--mysql 数据库驱动.-->
|
||
<groupId>mysql</groupId>
|
||
<artifactId>mysql-connector-java</artifactId>
|
||
<version>8.0.15</version>
|
||
</dependency>
|
||
|
||
<!-- 数据库连接池 -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>druid</artifactId>
|
||
<version>1.0.5</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>dom4j</groupId>
|
||
<artifactId>dom4j</artifactId>
|
||
</dependency>
|
||
|
||
<!-- mybatis spring boot -->
|
||
<dependency>
|
||
<groupId>org.mybatis.spring.boot</groupId>
|
||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
<version>1.1.1</version>
|
||
</dependency>
|
||
|
||
<!-- swagger,restful接口文档生成工具 -->
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
<version>2.2.2</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger-ui</artifactId>
|
||
<version>2.2.2</version>
|
||
</dependency>
|
||
|
||
|
||
<!-- log4j配置,注意前头需要屏蔽默认logback日志 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-log4j</artifactId>
|
||
<version>1.3.8.RELEASE</version>
|
||
</dependency>
|
||
|
||
<!-- aop模块 -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-aop</artifactId>
|
||
</dependency>
|
||
|
||
<!-- shiro spring. -->
|
||
<dependency>
|
||
<groupId>org.apache.shiro</groupId>
|
||
<artifactId>shiro-spring</artifactId>
|
||
<version>1.3.2</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.httpcomponents</groupId>
|
||
<artifactId>httpmime</artifactId>
|
||
<version>4.5.2</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.google.code.gson</groupId>
|
||
<artifactId>gson</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 验证码 -->
|
||
<dependency>
|
||
<groupId>com.github.penggle</groupId>
|
||
<artifactId>kaptcha</artifactId>
|
||
<version>2.3.2</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.hadoop</groupId>
|
||
<artifactId>hadoop-common</artifactId>
|
||
<version>2.2.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.jhlabs</groupId>
|
||
<artifactId>filters</artifactId>
|
||
<version>2.0.235</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.codehaus.jettison</groupId>
|
||
<artifactId>jettison</artifactId>
|
||
<version>1.3.8</version>
|
||
</dependency>
|
||
|
||
<!--<!– redis支持 –>-->
|
||
<!--<dependency>-->
|
||
<!--<groupId>org.springframework.boot</groupId>-->
|
||
<!--<artifactId>spring-boot-starter-redis</artifactId>-->
|
||
<!--</dependency>-->
|
||
<!--<dependency>-->
|
||
<!--<groupId>org.springframework.session</groupId>-->
|
||
<!--<artifactId>spring-session-data-redis</artifactId>-->
|
||
<!--</dependency>-->
|
||
|
||
<!-- 热部署 添加时间:2018-03-02 17:08 -->
|
||
<!-- <dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-devtools</artifactId>
|
||
<version>1.5.7.RELEASE</version>
|
||
<optional>false</optional>
|
||
</dependency>-->
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.webjars</groupId>
|
||
<artifactId>jquery</artifactId>
|
||
<version>2.2.4</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>log4j</groupId>
|
||
<artifactId>log4j</artifactId>
|
||
<version>${log4j.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.hive</groupId>
|
||
<artifactId>hive-jdbc</artifactId>
|
||
<version>2.3.0</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.eclipse.jetty.aggregate</groupId>
|
||
<artifactId>*</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<artifactId>xercesImpl</artifactId>
|
||
<groupId>xerces</groupId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>commons-logging</groupId>
|
||
<artifactId>commons-logging</artifactId>
|
||
<version>1.1.3</version>
|
||
</dependency>
|
||
<!--分页插件-->
|
||
<dependency>
|
||
<groupId>com.github.pagehelper</groupId>
|
||
<artifactId>pagehelper</artifactId>
|
||
<version>4.1.6</version>
|
||
</dependency>
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.mybatis.generator</groupId>
|
||
<artifactId>mybatis-generator-core</artifactId>
|
||
<version>1.3.5</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-freemarker</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>tk.mybatis</groupId>
|
||
<artifactId>mapper</artifactId>
|
||
<version>3.4.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.22</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>easyexcel</artifactId>
|
||
<version>2.0.5</version>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.apache.poi</groupId>
|
||
<artifactId>poi-ooxml</artifactId>
|
||
<version>3.17</version>
|
||
</dependency>
|
||
<!-- 工作流 -->
|
||
<dependency>
|
||
<groupId>org.activiti</groupId>
|
||
<artifactId>activiti-spring-boot-starter-basic</artifactId>
|
||
<version>5.21.0</version>
|
||
</dependency>
|
||
<!--<dependency>
|
||
<groupId>com.sun.jersey</groupId>
|
||
<artifactId>jersey-core</artifactId>
|
||
<version>1.8</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.sun.jersey</groupId>
|
||
<artifactId>jersey-server</artifactId>
|
||
<version>1.8</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.sun.jersey</groupId>
|
||
<artifactId>jersey-client</artifactId>
|
||
<version>1.8</version>
|
||
</dependency>
|
||
<!– Json –>
|
||
<dependency>
|
||
<groupId>com.sun.jersey</groupId>
|
||
<artifactId>jersey-json</artifactId>
|
||
<version>1.18</version>
|
||
</dependency>-->
|
||
<dependency>
|
||
<groupId>org.json</groupId>
|
||
<artifactId>json</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-fileupload</groupId>
|
||
<artifactId>commons-fileupload</artifactId>
|
||
<version>1.3.1</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-io</groupId>
|
||
<artifactId>commons-io</artifactId>
|
||
<version>2.4</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>commons-codec</groupId>
|
||
<artifactId>commons-codec</artifactId>
|
||
<version>1.9</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>jaxen</groupId>
|
||
<artifactId>jaxen</artifactId>
|
||
<version>1.1.6</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.aliyun.oss</groupId>
|
||
<artifactId>aliyun-sdk-oss</artifactId>
|
||
<version>3.1.0</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>4.6.3</version>
|
||
</dependency>
|
||
</dependencies>
|
||
</project>
|