|
@@ -0,0 +1,984 @@
|
|
|
|
|
+<?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.izouma</groupId>
|
|
|
|
|
+ <artifactId>awesome-admin</artifactId>
|
|
|
|
|
+ <version>1.0.0</version>
|
|
|
|
|
+ <packaging>war</packaging>
|
|
|
|
|
+
|
|
|
|
|
+ <name>awesome-admin</name>
|
|
|
|
|
+ <url>http://www.izouma.com</url>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 项目属性 -->
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <!-- other libs -->
|
|
|
|
|
+ <lib.path>${basedir}/src/main/webapp/WEB-INF/lib</lib.path>
|
|
|
|
|
+ <!-- main version setting -->
|
|
|
|
|
+ <spring.version>4.3.5.RELEASE</spring.version>
|
|
|
|
|
+ <validator.version>5.4.0.Final</validator.version>
|
|
|
|
|
+ <mybatis.version>3.3.1</mybatis.version>
|
|
|
|
|
+ <mybatis-spring.version>1.2.2</mybatis-spring.version>
|
|
|
|
|
+ <druid.version>1.0.31</druid.version>
|
|
|
|
|
+ <ehcache.version>2.6.11</ehcache.version>
|
|
|
|
|
+ <ehcache-web.version>2.0.4</ehcache-web.version>
|
|
|
|
|
+ <shiro.version>1.4.0</shiro.version>
|
|
|
|
|
+ <sitemesh.version>2.4.2</sitemesh.version>
|
|
|
|
|
+ <activiti.version>5.22.0</activiti.version>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- tools version setting -->
|
|
|
|
|
+ <slf4j.version>1.7.25</slf4j.version>
|
|
|
|
|
+ <log4j.version>1.2.17</log4j.version>
|
|
|
|
|
+ <commons-io.version>2.4</commons-io.version>
|
|
|
|
|
+ <commons-codec.version>1.9</commons-codec.version>
|
|
|
|
|
+ <commons-fileupload.version>1.3.1</commons-fileupload.version>
|
|
|
|
|
+ <commons-beanutils.version>1.9.1</commons-beanutils.version>
|
|
|
|
|
+ <jackson.version>2.8.6</jackson.version>
|
|
|
|
|
+ <fastjson.version>1.1.40</fastjson.version>
|
|
|
|
|
+ <xstream.version>1.4.9</xstream.version>
|
|
|
|
|
+ <dozer.version>5.5.1</dozer.version>
|
|
|
|
|
+ <poi.version>3.9</poi.version>
|
|
|
|
|
+ <freemarker.version>2.3.25-incubating</freemarker.version>
|
|
|
|
|
+ <quartz.version>2.2.3</quartz.version>
|
|
|
|
|
+ <ckfinder.version>2.3</ckfinder.version>
|
|
|
|
|
+
|
|
|
|
|
+ <guava.version>20.0</guava.version>
|
|
|
|
|
+ <commons-lang3.version>3.5</commons-lang3.version>
|
|
|
|
|
+ <commons-text.version>1.3</commons-text.version>
|
|
|
|
|
+ <commons-collections.version>4.1</commons-collections.version>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- jdbc driver setting -->
|
|
|
|
|
+ <mysql.driver.version>5.1.30</mysql.driver.version>
|
|
|
|
|
+ <sqlserver.driver.version>4.0.0</sqlserver.driver.version>
|
|
|
|
|
+ <oracle.driver.version>10.2.0.4.0</oracle.driver.version>
|
|
|
|
|
+ <mssql.driver.version>1.3.1</mssql.driver.version>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- environment setting -->
|
|
|
|
|
+ <jdk.version>1.8</jdk.version>
|
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
+ <downloadSources>true</downloadSources>
|
|
|
|
|
+
|
|
|
|
|
+ </properties>
|
|
|
|
|
+ <!-- 设定仓库 -->
|
|
|
|
|
+ <!--<repositories>-->
|
|
|
|
|
+ <!--<repository>-->
|
|
|
|
|
+ <!--<id>central-repos</id>-->
|
|
|
|
|
+ <!--<name>Central Repository</name>-->
|
|
|
|
|
+ <!--<url>http://maven.aliyun.com/nexus/content/groups/public/</url>-->
|
|
|
|
|
+ <!--<releases>-->
|
|
|
|
|
+ <!--<enabled>true</enabled>-->
|
|
|
|
|
+ <!--</releases>-->
|
|
|
|
|
+ <!--<snapshots>-->
|
|
|
|
|
+ <!--<enabled>false</enabled>-->
|
|
|
|
|
+ <!--</snapshots>-->
|
|
|
|
|
+ <!--</repository>-->
|
|
|
|
|
+
|
|
|
|
|
+ <!--<repository>-->
|
|
|
|
|
+ <!--<id>central-repos2</id>-->
|
|
|
|
|
+ <!--<name>Central Repository 2</name>-->
|
|
|
|
|
+ <!--<url>http://mvnrepo.code.taobao.org/nexus/content/repositories/snapshots/</url>-->
|
|
|
|
|
+ <!--<releases>-->
|
|
|
|
|
+ <!--<enabled>true</enabled>-->
|
|
|
|
|
+ <!--</releases>-->
|
|
|
|
|
+ <!--<snapshots>-->
|
|
|
|
|
+ <!--<enabled>false</enabled>-->
|
|
|
|
|
+ <!--</snapshots>-->
|
|
|
|
|
+ <!--</repository>-->
|
|
|
|
|
+
|
|
|
|
|
+ <!--<repository>-->
|
|
|
|
|
+ <!--<id>springsource-repos</id>-->
|
|
|
|
|
+ <!--<name>SpringSource Repository</name>-->
|
|
|
|
|
+ <!--<url>http://mvnrepo.code.taobao.org/nexus/content/repositories/releases/</url>-->
|
|
|
|
|
+ <!--<releases>-->
|
|
|
|
|
+ <!--<enabled>true</enabled>-->
|
|
|
|
|
+ <!--</releases>-->
|
|
|
|
|
+ <!--<snapshots>-->
|
|
|
|
|
+ <!--<enabled>false</enabled>-->
|
|
|
|
|
+ <!--</snapshots>-->
|
|
|
|
|
+ <!--</repository>-->
|
|
|
|
|
+ <!---->
|
|
|
|
|
+ <!--<repository>-->
|
|
|
|
|
+ <!--<id>bitwalker.user-agent-utils.mvn.repo</id>-->
|
|
|
|
|
+ <!--<url>https://nexus.jackpinetech.com/nexus/content/groups/public</url>-->
|
|
|
|
|
+ <!--<!– use snapshot version –>-->
|
|
|
|
|
+ <!--<snapshots>-->
|
|
|
|
|
+ <!--<updatePolicy>always</updatePolicy>-->
|
|
|
|
|
+ <!--</snapshots>-->
|
|
|
|
|
+ <!--</repository>-->
|
|
|
|
|
+ <!--</repositories>-->
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <finalName>awesome-admin</finalName>
|
|
|
|
|
+ <resources>
|
|
|
|
|
+ <resource>
|
|
|
|
|
+ <directory>src/main/java</directory>
|
|
|
|
|
+ <filtering>true</filtering>
|
|
|
|
|
+ <includes>
|
|
|
|
|
+ <include>**/*.xml</include>
|
|
|
|
|
+ <include>**/*.properties</include>
|
|
|
|
|
+ </includes>
|
|
|
|
|
+ </resource>
|
|
|
|
|
+ <resource>
|
|
|
|
|
+ <directory>src/main/resources</directory>
|
|
|
|
|
+ </resource>
|
|
|
|
|
+ </resources>
|
|
|
|
|
+
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <source>${jdk.version}</source>
|
|
|
|
|
+ <target>${jdk.version}</target>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
+ <version>2.10</version>
|
|
|
|
|
+ <configuration>
|
|
|
|
|
+ <skip>true</skip>
|
|
|
|
|
+ <testFailureIgnore>true</testFailureIgnore>
|
|
|
|
|
+ </configuration>
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 依赖项定义 -->
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <!-- SPRING begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-core</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-beans</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-context</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-context-support</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-aop</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-tx</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-expression</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- spring orm -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-orm</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-jdbc</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>c3p0</groupId>
|
|
|
|
|
+ <artifactId>c3p0</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- spring websocket-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-websocket</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-messaging</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- bean validate -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
|
|
+ <artifactId>hibernate-validator</artifactId>
|
|
|
|
|
+ <version>${validator.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- SPRING end -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- AOP begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.aspectj</groupId>
|
|
|
|
|
+ <artifactId>aspectjrt</artifactId>
|
|
|
|
|
+ <version>1.7.4</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.aspectj</groupId>
|
|
|
|
|
+ <artifactId>aspectjweaver</artifactId>
|
|
|
|
|
+ <version>1.7.4</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>cglib</groupId>
|
|
|
|
|
+ <artifactId>cglib</artifactId>
|
|
|
|
|
+ <version>3.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- AOP end -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- PERSISTENCE begin -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- MyBatis -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
|
|
+ <version>${mybatis.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
|
|
+ <artifactId>mybatis-spring</artifactId>
|
|
|
|
|
+ <version>${mybatis-spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- connection pool -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>druid</artifactId>
|
|
|
|
|
+ <version>${druid.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- jdbc driver -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>mysql</groupId>
|
|
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
+ <version>${mysql.driver.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>com.microsoft.sqlserver</groupId>-->
|
|
|
|
|
+ <!--<artifactId>sqljdbc4</artifactId>-->
|
|
|
|
|
+ <!--<version>${sqlserver.driver.version}</version>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/sqljdbc4 -->
|
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.microsoft.sqlserver</groupId>
|
|
|
|
|
+ <artifactId>mssql-jdbc</artifactId>
|
|
|
|
|
+ <version>6.4.0.jre8</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.mchange</groupId>
|
|
|
|
|
+ <artifactId>c3p0</artifactId>
|
|
|
|
|
+ <version>0.9.5.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- WEB begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-web</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-webmvc</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-oxm</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>opensymphony</groupId>
|
|
|
|
|
+ <artifactId>sitemesh</artifactId>
|
|
|
|
|
+ <version>${sitemesh.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>taglibs</groupId>-->
|
|
|
|
|
+ <!--<artifactId>standard</artifactId>-->
|
|
|
|
|
+ <!--<version>1.1.2</version>-->
|
|
|
|
|
+ <!--<type>jar</type>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax</groupId>
|
|
|
|
|
+ <artifactId>javaee-api</artifactId>
|
|
|
|
|
+ <version>7.0</version>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
|
|
+ <artifactId>jstl</artifactId>
|
|
|
|
|
+ <version>1.2</version>
|
|
|
|
|
+ <type>jar</type>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
|
|
+ <artifactId>servlet-api</artifactId>
|
|
|
|
|
+ <version>2.5</version>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.servlet.jsp</groupId>
|
|
|
|
|
+ <artifactId>jsp-api</artifactId>
|
|
|
|
|
+ <version>2.1</version>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- <dependency>
|
|
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
+ <version>3.0.1</version>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.servlet.jsp</groupId>
|
|
|
|
|
+ <artifactId>jsp-api</artifactId>
|
|
|
|
|
+ <version>2.2</version>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>-->
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>net.sf.ehcache</groupId>
|
|
|
|
|
+ <artifactId>ehcache-core</artifactId>
|
|
|
|
|
+ <version>${ehcache.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.jgroups</groupId>
|
|
|
|
|
+ <artifactId>jgroups</artifactId>
|
|
|
|
|
+ <version>3.6.6.Final</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>redis.clients</groupId>
|
|
|
|
|
+ <artifactId>jedis</artifactId>
|
|
|
|
|
+ <version>2.8.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
|
+ <artifactId>commons-pool2</artifactId>
|
|
|
|
|
+ <version>2.4.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>de.ruedigermoeller</groupId>
|
|
|
|
|
+ <artifactId>fst</artifactId>
|
|
|
|
|
+ <version>2.42</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.esotericsoftware</groupId>
|
|
|
|
|
+ <artifactId>kryo-shaded</artifactId>
|
|
|
|
|
+ <version>3.0.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- CACHE end -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- SECURITY begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-core</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-spring</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-cas</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-web</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.shiro</groupId>
|
|
|
|
|
+ <artifactId>shiro-ehcache</artifactId>
|
|
|
|
|
+ <version>${shiro.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- SECURITY end -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 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-explorer</artifactId>
|
|
|
|
|
+ <version>${activiti.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>vaadin</artifactId>
|
|
|
|
|
+ <groupId>com.vaadin</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>dcharts-widget</artifactId>
|
|
|
|
|
+ <groupId>org.vaadin.addons</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <artifactId>activiti-simple-workflow</artifactId>
|
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
|
+ <artifactId>activiti-modeler</artifactId>
|
|
|
|
|
+ <version>${activiti.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
|
+ <artifactId>activiti-rest</artifactId>
|
|
|
|
|
+ <version>${activiti.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
|
+ <artifactId>activiti-diagram-rest</artifactId>
|
|
|
|
|
+ <version>${activiti.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
|
+ <artifactId>activiti-json-converter</artifactId>
|
|
|
|
|
+ <version>${activiti.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
|
|
+ <artifactId>activiti-cxf</artifactId>
|
|
|
|
|
+ <version>${activiti.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>xerces</groupId>
|
|
|
|
|
+ <artifactId>xercesImpl</artifactId>
|
|
|
|
|
+ <version>2.11.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
|
|
+ <artifactId>cxf-api</artifactId>
|
|
|
|
|
+ <version>2.7.6</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
|
|
+ <artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
|
|
+ <version>2.7.6</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
|
|
+ <artifactId>cxf-rt-transports-http-jetty</artifactId>
|
|
|
|
|
+ <version>2.7.6</version>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
|
|
+ <artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
|
+ <version>2.7.6</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
+ <artifactId>jaxb-impl</artifactId>
|
|
|
|
|
+ <version>2.2.11</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <!-- LOGGING begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
|
|
+ <version>${slf4j.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
|
|
+ <version>${slf4j.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- common-logging 实际调用slf4j -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
|
+ <artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
|
+ <version>${slf4j.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- java.util.logging 实际调用slf4j -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
|
+ <artifactId>jul-to-slf4j</artifactId>
|
|
|
|
|
+ <version>${slf4j.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>log4j</groupId>
|
|
|
|
|
+ <artifactId>log4j</artifactId>
|
|
|
|
|
+ <version>${log4j.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- LOGGING end -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- GENERAL UTILS begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
|
|
+ <version>${commons-io.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-codec</groupId>
|
|
|
|
|
+ <artifactId>commons-codec</artifactId>
|
|
|
|
|
+ <version>${commons-codec.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
|
|
+ <version>${commons-fileupload.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>commons-beanutils</groupId>
|
|
|
|
|
+ <artifactId>commons-beanutils</artifactId>
|
|
|
|
|
+ <version>${commons-beanutils.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
|
+ <artifactId>commons-text</artifactId>
|
|
|
|
|
+ <version>${commons-text.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
|
+ <artifactId>commons-collections4</artifactId>
|
|
|
|
|
+ <version>${commons-collections.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <!-- jackson json -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
+ <artifactId>jackson-core</artifactId>
|
|
|
|
|
+ <version>${jackson.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
+ <artifactId>jackson-databind</artifactId>
|
|
|
|
|
+ <version>${jackson.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
+ <artifactId>jackson-annotations</artifactId>
|
|
|
|
|
+ <version>${jackson.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
|
+ <artifactId>jackson-module-jaxb-annotations</artifactId>
|
|
|
|
|
+ <version>${jackson.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- fastjson json-->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.alibaba</groupId>
|
|
|
|
|
+ <artifactId>fastjson</artifactId>
|
|
|
|
|
+ <version>${fastjson.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- xstream xml -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
|
+ <artifactId>xstream</artifactId>
|
|
|
|
|
+ <version>${xstream.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- pojo copy -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>net.sf.dozer</groupId>
|
|
|
|
|
+ <artifactId>dozer</artifactId>
|
|
|
|
|
+ <version>${dozer.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.belerweb/pinyin4j -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.belerweb</groupId>
|
|
|
|
|
+ <artifactId>pinyin4j</artifactId>
|
|
|
|
|
+ <version>2.5.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <!-- template engine -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.freemarker</groupId>
|
|
|
|
|
+ <artifactId>freemarker</artifactId>
|
|
|
|
|
+ <version>${freemarker.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.ibeetl</groupId>
|
|
|
|
|
+ <artifactId>beetl</artifactId>
|
|
|
|
|
+ <version>2.7.5</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- email -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.mail</groupId>
|
|
|
|
|
+ <artifactId>mail</artifactId>
|
|
|
|
|
+ <version>1.4.7</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.activation</groupId>
|
|
|
|
|
+ <artifactId>activation</artifactId>
|
|
|
|
|
+ <version>1.1.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- poi office -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
|
|
+ <version>${poi.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
|
|
+ <version>${poi.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
|
+ <artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
|
+ <version>${poi.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- image util -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.drewnoakes</groupId>
|
|
|
|
|
+ <artifactId>metadata-extractor</artifactId>
|
|
|
|
|
+ <version>2.10.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 条形码、二维码生成 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.google.zxing</groupId>
|
|
|
|
|
+ <artifactId>core</artifactId>
|
|
|
|
|
+ <version>3.3.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>batik</groupId>
|
|
|
|
|
+ <artifactId>batik-util</artifactId>
|
|
|
|
|
+ <version>1.6-1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- quartz -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
+ <artifactId>quartz</artifactId>
|
|
|
|
|
+ <version>${quartz.version}</version>
|
|
|
|
|
+ <exclusions>
|
|
|
|
|
+ <exclusion>
|
|
|
|
|
+ <groupId>c3p0</groupId>
|
|
|
|
|
+ <artifactId>c3p0</artifactId>
|
|
|
|
|
+ </exclusion>
|
|
|
|
|
+ </exclusions>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.quartz-scheduler</groupId>
|
|
|
|
|
+ <artifactId>quartz-jobs</artifactId>
|
|
|
|
|
+ <version>${quartz.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--<!– 中文分词 –>-->
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>org.wltea</groupId>-->
|
|
|
|
|
+ <!--<artifactId>analyzer</artifactId>-->
|
|
|
|
|
+ <!--<version>2012_u6</version>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+ <!-- GENERAL UTILS end -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- sigar -->
|
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.fusesource/sigar -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.fusesource</groupId>
|
|
|
|
|
+ <artifactId>sigar</artifactId>
|
|
|
|
|
+ <version>1.6.4</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- CKFinder begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>net.coobird</groupId>
|
|
|
|
|
+ <artifactId>thumbnailator</artifactId>
|
|
|
|
|
+ <version>0.4.8</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>com.ckfinder</groupId>-->
|
|
|
|
|
+ <!--<artifactId>apache-ant-zip</artifactId>-->
|
|
|
|
|
+ <!--<version>${ckfinder.version}</version>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>com.ckfinder</groupId>-->
|
|
|
|
|
+ <!--<artifactId>ckfinder</artifactId>-->
|
|
|
|
|
+ <!--<version>${ckfinder.version}</version>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>com.ckfinder</groupId>-->
|
|
|
|
|
+ <!--<artifactId>ckfinderplugin-fileeditor</artifactId>-->
|
|
|
|
|
+ <!--<version>${ckfinder.version}</version>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>com.ckfinder</groupId>-->
|
|
|
|
|
+ <!--<artifactId>ckfinderplugin-imageresize</artifactId>-->
|
|
|
|
|
+ <!--<version>${ckfinder.version}</version>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+ <!-- CKFinder end -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Echarts图表依赖包开始 -->
|
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/com.github.abel533/ECharts -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.github.abel533</groupId>
|
|
|
|
|
+ <artifactId>ECharts</artifactId>
|
|
|
|
|
+ <version>3.0.0.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
|
|
+ <version>2.6.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- Echarts图表依赖包结束 -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- TEST begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>junit</groupId>
|
|
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
|
|
+ <version>4.12</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
|
+ <artifactId>spring-test</artifactId>
|
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- TEST end -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>eu.bitwalker</groupId>
|
|
|
|
|
+ <artifactId>UserAgentUtils</artifactId>
|
|
|
|
|
+ <version>1.20</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--httpcore -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
+ <artifactId>httpcore</artifactId>
|
|
|
|
|
+ <version>4.4.4</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <!-- swagger-springmvc -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
|
+ <artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
+ <version>2.7.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.springfox</groupId>
|
|
|
|
|
+ <artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
+ <version>2.7.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- swagger-springmvc -->
|
|
|
|
|
+
|
|
|
|
|
+ <!--httpclient -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
+ <artifactId>httpclient</artifactId>
|
|
|
|
|
+ <version>4.5.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- UTILS begin -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.google.guava</groupId>
|
|
|
|
|
+ <artifactId>guava</artifactId>
|
|
|
|
|
+ <version>${guava.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
|
+ <version>${commons-lang3.version}</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!-- UTILS end -->
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
|
|
+ <artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
|
+ <version>3.2.2</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.aliyun</groupId>
|
|
|
|
|
+ <artifactId>aliyun-java-sdk-vod</artifactId>
|
|
|
|
|
+ <version>2.2.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.aliyun.oss</groupId>
|
|
|
|
|
+ <artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
+ <version>2.0.6</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>aopalliance</groupId>
|
|
|
|
|
+ <artifactId>aopalliance</artifactId>
|
|
|
|
|
+ <version>1.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>dom4j</groupId>
|
|
|
|
|
+ <artifactId>dom4j</artifactId>
|
|
|
|
|
+ <version>1.6.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>net.sf.ezmorph</groupId>
|
|
|
|
|
+ <artifactId>ezmorph</artifactId>
|
|
|
|
|
+ <version>1.0.6</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.jboss.logging</groupId>
|
|
|
|
|
+ <artifactId>jboss-logging</artifactId>
|
|
|
|
|
+ <version>3.3.0.Final</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.jboss</groupId>
|
|
|
|
|
+ <artifactId>jboss-vfs</artifactId>
|
|
|
|
|
+ <version>3.2.12.Final</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.jdom</groupId>
|
|
|
|
|
+ <artifactId>jdom</artifactId>
|
|
|
|
|
+ <version>1.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.codehaus.jettison</groupId>
|
|
|
|
|
+ <artifactId>jettison</artifactId>
|
|
|
|
|
+ <version>1.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>net.sf.json-lib</groupId>
|
|
|
|
|
+ <artifactId>json-lib</artifactId>
|
|
|
|
|
+ <classifier>jdk15</classifier>
|
|
|
|
|
+ <version>2.4</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.json</groupId>
|
|
|
|
|
+ <artifactId>json</artifactId>
|
|
|
|
|
+ <version>20160810</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.drewnoakes</groupId>
|
|
|
|
|
+ <artifactId>metadata-extractor</artifactId>
|
|
|
|
|
+ <version>2.10.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>net.coobird</groupId>
|
|
|
|
|
+ <artifactId>thumbnailator</artifactId>
|
|
|
|
|
+ <version>0.4.8</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.adobe.xmp</groupId>
|
|
|
|
|
+ <artifactId>xmpcore</artifactId>
|
|
|
|
|
+ <version>5.1.3</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>xpp3</groupId>
|
|
|
|
|
+ <artifactId>xpp3_min</artifactId>
|
|
|
|
|
+ <version>1.1.4c</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>org.apache.velocity</groupId>-->
|
|
|
|
|
+ <!--<artifactId>velocity-engine-core</artifactId>-->
|
|
|
|
|
+ <!--<version>2.0</version>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.apache.velocity/velocity -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
|
|
+ <artifactId>velocity</artifactId>
|
|
|
|
|
+ <version>1.7</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.apache.velocity</groupId>
|
|
|
|
|
+ <artifactId>velocity-tools</artifactId>
|
|
|
|
|
+ <version>2.0</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>com.fasterxml.uuid</groupId>
|
|
|
|
|
+ <artifactId>java-uuid-generator</artifactId>
|
|
|
|
|
+ <version>3.1.3</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <!--<dependency>-->
|
|
|
|
|
+ <!--<groupId>com.baidu</groupId>-->
|
|
|
|
|
+ <!--<artifactId>ueditor</artifactId>-->
|
|
|
|
|
+ <!--<version>1.1.2</version>-->
|
|
|
|
|
+ <!--<systemPath>${basedir}/src/main/webapp/WEB-INF/lib/ueditor-1.1.2.jar</systemPath>-->
|
|
|
|
|
+ <!--</dependency>-->
|
|
|
|
|
+
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
+ <artifactId>jjwt-api</artifactId>
|
|
|
|
|
+ <version>0.10.1</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
+ <artifactId>jjwt-impl</artifactId>
|
|
|
|
|
+ <version>0.10.1</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
+ <artifactId>jjwt-jackson</artifactId>
|
|
|
|
|
+ <version>0.10.1</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+
|
|
|
|
|
+</project>
|