|
@@ -0,0 +1,409 @@
|
|
|
+<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.bootdo</groupId>
|
|
|
+ <artifactId>cic-data-reportin</artifactId>
|
|
|
+ <version>2.0.0</version>
|
|
|
+ <packaging>jar</packaging>
|
|
|
+
|
|
|
+ <name>cic-data-reportin</name>
|
|
|
+ <description>Demo project for Spring Boot</description>
|
|
|
+
|
|
|
+ <parent>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
+ <version>2.0.3.RELEASE</version>
|
|
|
+ <relativePath/>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
+ <java.version>1.8</java.version>
|
|
|
+ <mybatisplus-spring-boot-starter.version>1.0.4</mybatisplus-spring-boot-starter.version>
|
|
|
+ <velocity.version>1.7</velocity.version>
|
|
|
+ <activiti.version>5.22.0</activiti.version>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter</artifactId>
|
|
|
+ </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-aop</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!--web -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sourceforge.nekohtml</groupId>
|
|
|
+ <artifactId>nekohtml</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!--mybatis -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
+ <version>3.4.4</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis.spring.boot</groupId>
|
|
|
+ <artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
+ <version>1.1.1</version>
|
|
|
+ </dependency>
|
|
|
+ <!--druid -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
+ <version>1.0.28</version>
|
|
|
+ </dependency>
|
|
|
+ <!--commons -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
+ <version>3.6</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-configuration</groupId>
|
|
|
+ <artifactId>commons-configuration</artifactId>
|
|
|
+ <version>1.10</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>2.5</version>
|
|
|
+ </dependency>
|
|
|
+ <!--shiro -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-core</artifactId>
|
|
|
+ <version>1.3.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-spring</artifactId>
|
|
|
+ <version>1.3.2</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- shiro ehcache -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
+ <artifactId>shiro-ehcache</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>net.sf.ehcache</groupId>
|
|
|
+ <artifactId>ehcache-core</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ <version>1.4.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.theborakompanioni</groupId>
|
|
|
+ <artifactId>thymeleaf-extras-shiro</artifactId>
|
|
|
+ <version>2.0.0</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- utils -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
+ <version>1.2.31</version>
|
|
|
+ </dependency>
|
|
|
+ <!--velocity代码生成使用模板 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
+ <artifactId>velocity</artifactId>
|
|
|
+ <version>1.7</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- ehchache -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-cache</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sf.ehcache</groupId>
|
|
|
+ <artifactId>ehcache</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <!--<dependency>-->
|
|
|
+ <!--<groupId>org.springframework.boot</groupId>-->
|
|
|
+ <!--<artifactId>spring-boot-starter-data-redis</artifactId>-->
|
|
|
+ <!--</dependency>-->
|
|
|
+ <!-- quartz -->
|
|
|
+ <!--<dependency>-->
|
|
|
+ <!--<groupId>org.springframework.boot</groupId>-->
|
|
|
+ <!--<artifactId>spring-boot-starter-cache</artifactId>-->
|
|
|
+ <!--</dependency>-->
|
|
|
+
|
|
|
+ <!--<dependency>-->
|
|
|
+ <!--<groupId>net.sf.ehcache</groupId>-->
|
|
|
+ <!--<artifactId>ehcache</artifactId>-->
|
|
|
+ <!--</dependency>-->
|
|
|
+
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.quartz-scheduler</groupId>
|
|
|
+ <artifactId>quartz</artifactId>
|
|
|
+ <version>2.2.1</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <!-- SpringWebSocket依赖 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-context-support</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-devtools</artifactId>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <!--activiti-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-engine</artifactId>
|
|
|
+ <version>${activiti.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-spring</artifactId>
|
|
|
+ <version>${activiti.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-modeler</artifactId>
|
|
|
+ <version>${activiti.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-diagram-rest</artifactId>
|
|
|
+ <version>${activiti.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--swagger2-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
+ <version>2.6.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
+ <version>2.6.1</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- 添加redis支持-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>redis.clients</groupId>
|
|
|
+ <artifactId>jedis</artifactId>
|
|
|
+ <version>2.9.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- xss过滤组件 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.jsoup</groupId>
|
|
|
+ <artifactId>jsoup</artifactId>
|
|
|
+ <version>1.9.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--war包部署需要-->
|
|
|
+ <!--<dependency>-->
|
|
|
+ <!--<groupId>org.springframework.boot</groupId>-->
|
|
|
+ <!--<artifactId>spring-boot-starter-web</artifactId>-->
|
|
|
+ <!--<!– 移除嵌入式tomcat插件 –>-->
|
|
|
+ <!--<exclusions>-->
|
|
|
+ <!--<exclusion>-->
|
|
|
+ <!--<groupId>org.springframework.boot</groupId>-->
|
|
|
+ <!--<artifactId>spring-boot-starter-tomcat</artifactId>-->
|
|
|
+ <!--</exclusion>-->
|
|
|
+ <!--</exclusions>-->
|
|
|
+ <!--</dependency>-->
|
|
|
+ <!--<dependency>-->
|
|
|
+ <!--<groupId>javax.servlet</groupId>-->
|
|
|
+ <!--<artifactId>javax.servlet-api</artifactId>-->
|
|
|
+ <!--<version>3.1.0</version>-->
|
|
|
+ <!--<scope>provided</scope>-->
|
|
|
+ <!--</dependency>-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.netflix.feign</groupId>
|
|
|
+ <artifactId>feign-core</artifactId>
|
|
|
+ <version>8.18.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.netflix.feign</groupId>
|
|
|
+ <artifactId>feign-jackson</artifactId>
|
|
|
+ <version>8.18.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- <dependency>-->
|
|
|
+ <!-- <groupId>org.springframework.cloud</groupId>-->
|
|
|
+ <!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
|
|
|
+ <!-- <version>2.1.2.RELEASE</version>-->
|
|
|
+ <!-- </dependency>-->
|
|
|
+
|
|
|
+ <!-- <dependency>-->
|
|
|
+ <!-- <groupId>org.apache.poi</groupId>-->
|
|
|
+ <!-- <artifactId>poi</artifactId>-->
|
|
|
+ <!-- <version>4.0.1</version>-->
|
|
|
+ <!-- </dependency>-->
|
|
|
+ <!-- <dependency>-->
|
|
|
+ <!-- <groupId>org.apache.poi</groupId>-->
|
|
|
+ <!-- <artifactId>poi-ooxml</artifactId>-->
|
|
|
+ <!-- <version>4.0.1</version>-->
|
|
|
+ <!-- </dependency>-->
|
|
|
+
|
|
|
+ <!-- easyexcel相关依赖 -->
|
|
|
+<!-- <dependency>-->
|
|
|
+<!-- <groupId>com.alibaba</groupId>-->
|
|
|
+<!-- <artifactId>easyexcel</artifactId>-->
|
|
|
+<!-- <version>1.1.2-beta5</version>-->
|
|
|
+<!-- </dependency>-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
+ <artifactId>easyexcel</artifactId>
|
|
|
+ <version>2.2.10</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <version>1.18.12</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
+ <version>3.17</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
+ <version>3.17</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
+ <artifactId>ooxml-schemas</artifactId>
|
|
|
+ <version>1.4</version>
|
|
|
+ </dependency>
|
|
|
+ <!--国密
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.iwall.gmsec</groupId>
|
|
|
+ <artifactId>GMSec</artifactId>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ </dependency>-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.bouncycastle</groupId>
|
|
|
+ <artifactId>bcprov-jdk15on</artifactId>
|
|
|
+ <version>1.64</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.bouncycastle</groupId>
|
|
|
+ <artifactId>bcpkix-jdk15on</artifactId>
|
|
|
+ <version>1.64</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.squareup.okhttp3</groupId>
|
|
|
+ <artifactId>okhttp</artifactId>
|
|
|
+ <version>3.6.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.whvcse</groupId>
|
|
|
+ <artifactId>easy-captcha</artifactId>
|
|
|
+ <version>1.6.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--配置文件警告去除-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--http common-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpcore</artifactId>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--iwall 证书sdk-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.iwall</groupId>
|
|
|
+ <artifactId>iwallca-client</artifactId>
|
|
|
+ <version>0.0.2-SNAPSHOT</version>
|
|
|
+ <scope>system</scope>
|
|
|
+ <systemPath>${project.basedir}/src/lib/iwallca-client-0.0.2-SNAPSHOT.jar</systemPath>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <executable>true</executable>
|
|
|
+ <includeSystemScope>true</includeSystemScope>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+ <!--<repositories>-->
|
|
|
+ <!--<repository>-->
|
|
|
+ <!--<id>public</id>-->
|
|
|
+ <!--<name>aliyun nexus</name>-->
|
|
|
+ <!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
|
|
|
+ <!--<releases>-->
|
|
|
+ <!--<enabled>true</enabled>-->
|
|
|
+ <!--</releases>-->
|
|
|
+ <!--</repository>-->
|
|
|
+ <!--</repositories>-->
|
|
|
+ <!--<pluginRepositories>-->
|
|
|
+ <!--<pluginRepository>-->
|
|
|
+ <!--<id>public</id>-->
|
|
|
+ <!--<name>aliyun nexus</name>-->
|
|
|
+ <!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
|
|
|
+ <!--<releases>-->
|
|
|
+ <!--<enabled>true</enabled>-->
|
|
|
+ <!--</releases>-->
|
|
|
+ <!--<snapshots>-->
|
|
|
+ <!--<enabled>false</enabled>-->
|
|
|
+ <!--</snapshots>-->
|
|
|
+ <!--</pluginRepository>-->
|
|
|
+ <!--</pluginRepositories>-->
|
|
|
+</project>
|