<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</groupId>
|
<artifactId>asrs</artifactId>
|
<version>1.1.1</version>
|
<packaging>war</packaging>
|
|
|
<properties>
|
<!-- spring版本号 -->
|
<mysql.version>5.1.24</mysql.version>
|
<spring.version>4.0.6.RELEASE</spring.version>
|
<!-- mybatis版本号 -->
|
<mybatis.version>3.2.7</mybatis.version>
|
<!-- log4j日志文件管理包版本 -->
|
<slf4j.version>1.7.21</slf4j.version>
|
<log4j.version>1.2.17</log4j.version>
|
<activiti.version>5.22.0</activiti.version>
|
<sitemesh.version>3.0.0</sitemesh.version>
|
</properties>
|
|
<dependencies>
|
<!-- Spring框架必要的两个架包 -->
|
<dependency>
|
<groupId>aspectj</groupId>
|
<artifactId>aspectjweaver</artifactId>
|
<version>1.5.4</version>
|
</dependency>
|
<dependency>
|
<groupId>aopalliance</groupId>
|
<artifactId>aopalliance</artifactId>
|
<version>1.0</version>
|
</dependency>
|
|
|
<!-- spring核心包 -->
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-core</artifactId>
|
<version>${spring.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-web</artifactId>
|
<version>${spring.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-oxm</artifactId>
|
<version>${spring.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-tx</artifactId>
|
<version>${spring.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-jdbc</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-aop</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-test</artifactId>
|
<version>${spring.version}</version>
|
</dependency>
|
|
<!-- mybatis核心包 -->
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
<version>${mybatis.version}</version>
|
</dependency>
|
|
<!-- mybatis/spring包 整合架包 -->
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis-spring</artifactId>
|
<version>1.2.2</version>
|
</dependency>
|
|
<!-- c3p0数据库连接池 -->
|
<dependency>
|
<groupId>com.mchange</groupId>
|
<artifactId>c3p0</artifactId>
|
<version>0.9.5.1</version>
|
</dependency>
|
|
<!-- 连接MySQL数据库 -->
|
<dependency>
|
<groupId>com.microsoft.sqlserver</groupId>
|
<artifactId>sqljdbc4</artifactId>
|
<version>2.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.2.6</version>
|
</dependency>
|
<!-- <dependency> -->
|
<!-- <groupId>mysql</groupId> -->
|
<!-- <artifactId>mysql-connector-java</artifactId> -->
|
<!-- <version>${mysql.version}</version> -->
|
<!-- </dependency> -->
|
<!--Oracle驱动包 添加oracle jdbc driver -->
|
<!-- <dependency>-->
|
<!-- <groupId>com.oracle</groupId>-->
|
<!-- <artifactId>ojdbc6</artifactId>-->
|
<!-- <version>11.2.0.1.0</version>-->
|
<!-- </dependency> -->
|
<!-- <dependency>
|
<groupId>com.oracle</groupId>
|
<artifactId>ojdbc14</artifactId>
|
<version>10.2.0.1.0</version>
|
</dependency> -->
|
|
<!-- junit测试包 -->
|
<dependency>
|
<groupId>junit</groupId>
|
<artifactId>junit</artifactId>
|
<version>4.11</version>
|
<!-- 表示开发的时候引入,发布的时候不会加载此包 -->
|
<scope>test</scope>
|
</dependency>
|
|
|
<!-- 日志文件管理包 -->
|
<dependency>
|
<groupId>log4j</groupId>
|
<artifactId>log4j</artifactId>
|
<version>${log4j.version}</version>
|
</dependency>
|
<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>
|
|
<!--c3p0连接需要 servlet -->
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>javax.servlet-api</artifactId>
|
<version>4.0.0</version>
|
<scope>provided</scope>
|
</dependency>
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>jsp-api</artifactId>
|
<version>2.0</version>
|
<scope>provided</scope>
|
</dependency>
|
|
<!-- JSTL标签包开始 -->
|
<dependency>
|
<groupId>javax.servlet</groupId>
|
<artifactId>jstl</artifactId>
|
<version>1.1.2</version>
|
</dependency>
|
|
<dependency>
|
<groupId>taglibs</groupId>
|
<artifactId>standard</artifactId>
|
<version>1.1.2</version>
|
</dependency>
|
<!-- json数据 -->
|
<dependency>
|
<groupId>org.codehaus.jackson</groupId>
|
<artifactId>jackson-mapper-asl</artifactId>
|
<version>1.9.13</version>
|
</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>
|
|
<!-- sitemesh是一个网页布局和修饰的框架,基于 Servlet 中的 Filter -->
|
<dependency>
|
<groupId>org.sitemesh</groupId>
|
<artifactId>sitemesh</artifactId>
|
<version>${sitemesh.version}</version>
|
</dependency>
|
|
|
<!-- activity工作流引擎 -->
|
<!-- activiti开始 -->
|
<dependency>
|
<groupId>com.fasterxml.uuid</groupId>
|
<artifactId>java-uuid-generator</artifactId>
|
<version>3.1.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.jsoup</groupId>
|
<artifactId>jsoup</artifactId>
|
<version>1.7.2</version>
|
</dependency>
|
|
<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-json-converter</artifactId>
|
<version>${activiti.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-modeler</artifactId>
|
<version>${activiti.version}</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>commons-io</artifactId>
|
<groupId>commons-io</groupId>
|
</exclusion>
|
<exclusion>
|
<artifactId>xml-apis</artifactId>
|
<groupId>xml-apis</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-rest</artifactId>
|
<version>${activiti.version}</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>commons-io</artifactId>
|
<groupId>commons-io</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.activiti</groupId>
|
<artifactId>activiti-diagram-rest</artifactId>
|
<version>${activiti.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>net.bull.javamelody</groupId>
|
<artifactId>javamelody-core</artifactId>
|
<version>1.65.0</version>
|
</dependency>
|
<dependency>
|
<groupId>jaxen</groupId>
|
<artifactId>jaxen</artifactId>
|
<version>1.1.6</version>
|
</dependency>
|
<!-- activiti结束 -->
|
|
|
<!--导入导出 -->
|
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>3.9</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.9</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/net.iharder/base64 -->
|
<dependency>
|
<groupId>net.iharder</groupId>
|
<artifactId>base64</artifactId>
|
<version>2.3.8</version>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml-schemas</artifactId>
|
<version>3.9</version>
|
</dependency>
|
|
<dependency>
|
<groupId>net.sf.json-lib</groupId>
|
<artifactId>json-lib</artifactId>
|
<version>2.4</version>
|
<classifier>jdk15</classifier>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.66</version>
|
</dependency>
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
<version>3.10.0</version>
|
</dependency>
|
<!-- <dependency> -->
|
<!-- <groupId>net.sf.barcode4j</groupId> -->
|
<!-- <artifactId>barcode4j-light</artifactId> -->
|
<!-- <version>2.0</version> -->
|
<!-- </dependency> -->
|
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>core</artifactId>
|
<version>3.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>javase</artifactId>
|
<version>3.0.0</version>
|
</dependency>
|
<!--log4j-->
|
<!-- <dependency> -->
|
<!-- <groupId>org.apache.logging.log4j</groupId> -->
|
<!-- <artifactId>log4j-core</artifactId> -->
|
<!-- <version>2.3</version> -->
|
<!-- </dependency> -->
|
<!-- <dependency> -->
|
<!-- <groupId>org.slf4j</groupId> -->
|
<!-- <artifactId>slf4j-log4j12</artifactId> -->
|
<!-- <version>1.7.25</version> -->
|
<!-- </dependency> -->
|
<!--junit-->
|
<!-- <dependency> -->
|
<!-- <groupId>junit</groupId> -->
|
<!-- <artifactId>junit</artifactId> -->
|
<!-- <version>4.12</version> -->
|
<!-- </dependency> -->
|
|
</dependencies>
|
|
<build>
|
<finalName>asrs</finalName>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<configuration>
|
<source>8</source>
|
<target>8</target>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|