|
|
<?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.emr</groupId>
|
|
|
<artifactId>emr_medical_record</artifactId>
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
<name>emr_medical_record Maven Webapp</name>
|
|
|
<url>http://www.example.com</url>
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
<!-- begin 全局设置,被子工程继承 -->
|
|
|
<skipTest>true</skipTest>
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
<!-- 跳过 必须依赖正式版本的检查 -->
|
|
|
<skipRequireRelease>true</skipRequireRelease>
|
|
|
<!-- begin 框架版本 -->
|
|
|
<framework.version>1.0.0</framework.version>
|
|
|
<!-- end -->
|
|
|
<!-- begin 其它第三方开源版本定义 -->
|
|
|
<portable.maven.version>1.1.5</portable.maven.version>
|
|
|
<junit.version>4.12</junit.version>
|
|
|
<jdk.version>1.8</jdk.version>
|
|
|
<mockito.version>1.9.5</mockito.version>
|
|
|
<!--<spring.version>3.2.2.RELEASE</spring.version>-->
|
|
|
<shiro.version>1.2.2</shiro.version>
|
|
|
<quartz.version>2.2.1</quartz.version>
|
|
|
<jetty.version>7.6.11.v20130520</jetty.version>
|
|
|
<servlet.version>2.4</servlet.version>
|
|
|
<jsp.version>2.1</jsp.version>
|
|
|
<jstl.version>1.2</jstl.version>
|
|
|
<c3p0.version>0.9.5.2</c3p0.version>
|
|
|
<hibernate-validator.version>5.0.1.Final</hibernate-validator.version>
|
|
|
<postgresql.version>9.2-1004-jdbc4</postgresql.version>
|
|
|
<activiti.version>5.17.0</activiti.version>
|
|
|
<groovy.version>2.3.6</groovy.version>
|
|
|
<aliyun-sdk-oss.version>2.2.1</aliyun-sdk-oss.version>
|
|
|
<alipay-sdk.version>1.1.1</alipay-sdk.version>
|
|
|
<bropen-api.version>3.5.0</bropen-api.version>
|
|
|
|
|
|
<spring.version>5.0.2.RELEASE</spring.version>
|
|
|
<mybatis.version>3.2.8</mybatis.version>
|
|
|
<mybatis.spring.version>1.2.2</mybatis.spring.version>
|
|
|
<mybatis.paginator.version>1.2.15</mybatis.paginator.version>
|
|
|
<mysql.version>5.1.32</mysql.version>
|
|
|
<slf4j.version>1.6.4</slf4j.version>
|
|
|
<json-lib.version>2.4</json-lib.version>
|
|
|
<jackson.version>2.9.4</jackson.version>
|
|
|
<druid.version>1.0.9</druid.version>
|
|
|
<httpclient.version>4.3.5</httpclient.version>
|
|
|
<servlet-api.version>2.5</servlet-api.version>
|
|
|
<jsp-api.version>2.0</jsp-api.version>
|
|
|
<joda-time.version>2.5</joda-time.version>
|
|
|
<commons-lang3.version>3.3.2</commons-lang3.version>
|
|
|
<commons-io.version>1.3.2</commons-io.version>
|
|
|
<commons-net.version>3.3</commons-net.version>
|
|
|
<pagehelper.version>5.1.10</pagehelper.version>
|
|
|
<jsqlparser.version>0.9.1</jsqlparser.version>
|
|
|
<commons-fileupload.version>1.3.1</commons-fileupload.version>
|
|
|
<jedis.version>2.7.2</jedis.version>
|
|
|
<solrj.version>4.10.3</solrj.version>
|
|
|
<aspectj.version>1.8.13</aspectj.version>
|
|
|
<aspectjrt.version>1.8.13</aspectjrt.version>
|
|
|
<image2pdf.version>2.1.7</image2pdf.version>
|
|
|
<cxf.version>3.1.8</cxf.version>
|
|
|
<poi.version>3.9</poi.version>
|
|
|
</properties>
|
|
|
|
|
|
<!-- maven依赖 -->
|
|
|
<dependencies>
|
|
|
<!-- Apache工具组件 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
<version>${commons-lang3.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
<version>${commons-io.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-net</groupId>
|
|
|
<artifactId>commons-net</artifactId>
|
|
|
<version>${commons-net.version}</version>
|
|
|
</dependency>
|
|
|
<!--json-->
|
|
|
<dependency>
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
<version>${json-lib.version}</version>
|
|
|
<classifier>jdk15</classifier>
|
|
|
</dependency>
|
|
|
<!-- Jackson Json处理工具包 -->
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
<version>${jackson.version}</version>
|
|
|
</dependency>
|
|
|
<!-- httpclient -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
<version>${httpclient.version}</version>
|
|
|
</dependency>
|
|
|
<!-- 单元测试 -->
|
|
|
<dependency>
|
|
|
<groupId>junit</groupId>
|
|
|
<artifactId>junit</artifactId>
|
|
|
<version>${junit.version}</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
<!-- 日志处理 -->
|
|
|
<dependency>
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
<version>${slf4j.version}</version>
|
|
|
</dependency>
|
|
|
<!-- 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>
|
|
|
<dependency>
|
|
|
<groupId>com.github.miemiedev</groupId>
|
|
|
<artifactId>mybatis-paginator</artifactId>
|
|
|
<version>${mybatis.paginator.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
<version>${pagehelper.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- MySql -->
|
|
|
<dependency>
|
|
|
<groupId>mysql</groupId>
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
<version>${mysql.version}</version>
|
|
|
</dependency>
|
|
|
<!--sqlserver-->
|
|
|
<dependency>
|
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
|
<artifactId>sqljdbc4</artifactId>
|
|
|
<version>4.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 连接池 -->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>druid</artifactId>
|
|
|
<version>${druid.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Spring -->
|
|
|
<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-beans</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-web</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-aspects</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-test</artifactId>
|
|
|
<version>${spring.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
<artifactId>aspectjweaver</artifactId>
|
|
|
<version>${aspectj.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.aspectj</groupId>
|
|
|
<artifactId>aspectjrt</artifactId>
|
|
|
<version>${aspectj.version}</version>
|
|
|
</dependency>
|
|
|
<!-- Hex -->
|
|
|
<!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
|
|
|
<dependency>
|
|
|
<groupId>commons-codec</groupId>
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
<version>1.9</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 导入DES对称加密包 -->
|
|
|
<dependency>
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
<artifactId>bcprov-jdk16</artifactId>
|
|
|
<version>1.46</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- Java Mail邮件 -->
|
|
|
<dependency>
|
|
|
<groupId>javax.mail</groupId>
|
|
|
<artifactId>mail</artifactId>
|
|
|
<version>1.4.5</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
<artifactId>javax.mail</artifactId>
|
|
|
<version>1.5.4</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- JSP相关 -->
|
|
|
<!-- jsTree -->
|
|
|
<!-- <dependency>
|
|
|
<groupId>org.webjars.bower</groupId>
|
|
|
<artifactId>jstree</artifactId>
|
|
|
<version>3.3.4</version>
|
|
|
</dependency>-->
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-dbutils/commons-dbutils -->
|
|
|
<dependency>
|
|
|
<groupId>commons-dbutils</groupId>
|
|
|
<artifactId>commons-dbutils</artifactId>
|
|
|
<version>1.4</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 引入pageHelper分页插件 -->
|
|
|
<dependency>
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
<artifactId>pagehelper</artifactId>
|
|
|
<version>5.0.0</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>jstl</groupId>
|
|
|
<artifactId>jstl</artifactId>
|
|
|
<version>${jstl.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
<version>${servlet-api.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
<artifactId>jsp-api</artifactId>
|
|
|
<version>${jsp-api.version}</version>
|
|
|
</dependency>
|
|
|
<!-- 文件上传组件 -->
|
|
|
<dependency>
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
<version>${commons-fileupload.version}</version>
|
|
|
</dependency>
|
|
|
<!-- Redis客户端 -->
|
|
|
<dependency>
|
|
|
<groupId>redis.clients</groupId>
|
|
|
<artifactId>jedis</artifactId>
|
|
|
<version>${jedis.version}</version>
|
|
|
</dependency>
|
|
|
<!-- solr客户端 -->
|
|
|
<!--<dependency>
|
|
|
<groupId>org.apache.solr</groupId>
|
|
|
<artifactId>solr-solrj</artifactId>
|
|
|
<version>${solrj.version}</version>
|
|
|
</dependency>-->
|
|
|
|
|
|
<!-- OpenSDK中转CGI接口(后台接口):经由 opensdk 确认登记后,才可以进行上报 -->
|
|
|
<!-- <dependency>
|
|
|
<groupId>com.manage</groupId>
|
|
|
<artifactId>framework-open-sdk</artifactId>
|
|
|
<version>${framework.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
<artifactId>spring-data-jpa</artifactId>
|
|
|
<version>1.3.0.RELEASE</version>
|
|
|
</dependency>
|
|
|
-->
|
|
|
<!-- SECURITY begin :进行用户认证以及授予权限的时候,通过各种各样的拦截器来控制权限的访问,从而实现安全 -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
<artifactId>shiro-spring</artifactId>
|
|
|
<version>${shiro.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
|
<version>${shiro.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
<artifactId>shiro-core</artifactId>
|
|
|
<version>${shiro.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
<artifactId>shiro-web</artifactId>
|
|
|
<version>${shiro.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- SECURITY end -->
|
|
|
|
|
|
<!-- 工作流 -->
|
|
|
<!--<dependency>
|
|
|
<groupId>org.activiti</groupId>
|
|
|
<artifactId>activiti-engine</artifactId>
|
|
|
<version>${activiti.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.activiti</groupId>
|
|
|
<artifactId>activiti-bpmn-layout</artifactId>
|
|
|
<version>${activiti.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.activiti</groupId>
|
|
|
<artifactId>activiti-spring</artifactId>
|
|
|
<version>${activiti.version}</version>
|
|
|
</dependency>-->
|
|
|
<!--实现任务调度-->
|
|
|
<!--<dependency>
|
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
|
<artifactId>quartz</artifactId>
|
|
|
<version>${quartz.version}</version>
|
|
|
</dependency>-->
|
|
|
|
|
|
<!-- groovy脚本引擎 -->
|
|
|
<!--<dependency>
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
<version>${groovy.version}</version>
|
|
|
</dependency>-->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.mchange</groupId>
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
<version>${c3p0.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
<version>${postgresql.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>taglibs</groupId>
|
|
|
<artifactId>standard</artifactId>
|
|
|
<version>1.1.2</version>
|
|
|
</dependency>
|
|
|
<!--json-->
|
|
|
<dependency>
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
<version>${json-lib.version}</version>
|
|
|
<classifier>jdk15</classifier>
|
|
|
</dependency>
|
|
|
<!-- Jackson Json处理工具包 -->
|
|
|
<dependency>
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
<version>${jackson.version}</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--简化单元测试的书写-->
|
|
|
<dependency>
|
|
|
<groupId>org.mockito</groupId>
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
<version>${mockito.version}</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
<!-- 使用JDOM操作XML-->
|
|
|
<dependency>
|
|
|
<groupId>org.jdom</groupId>
|
|
|
<artifactId>jdom</artifactId>
|
|
|
<version>1.1</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!--客户端发送Http请求变得容易,而且也方便了开发人员测试接口-->
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.apache.httpcomponents</groupId>-->
|
|
|
<!--<artifactId>httpclient</artifactId>-->
|
|
|
<!--<version>4.5.1</version>-->
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
|
|
<!--<artifactId>maven-resources-plugin</artifactId>-->
|
|
|
<!--<version>3.1.0</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.mybatis.generator</groupId>-->
|
|
|
<!--<artifactId>mybatis-generator-core</artifactId>-->
|
|
|
<!--<version>1.3.5</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<!--简化单元测试的书写-->
|
|
|
<dependency>
|
|
|
<groupId>org.mockito</groupId>
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
<version>${mockito.version}</version>
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
<!--非web项目实现文件下载,使用apache的httpmime工具进行相关的http请求操作-->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
<version>4.5.5</version>
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 使用JDOM操作XML-->
|
|
|
<dependency>
|
|
|
<groupId>org.jdom</groupId>
|
|
|
<artifactId>jdom</artifactId>
|
|
|
<version>1.1</version>
|
|
|
</dependency>
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
|
|
<!--<artifactId>maven-resources-plugin</artifactId>-->
|
|
|
<!--<version>3.1.0</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<!--apache poi-->
|
|
|
<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>
|
|
|
<!--图片转pdf-->
|
|
|
<dependency>
|
|
|
<groupId>org.eclipse.birt.runtime.3_7_1</groupId>
|
|
|
<artifactId>com.lowagie.text</artifactId>
|
|
|
<version>${image2pdf.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
<artifactId>itextpdf</artifactId>
|
|
|
<version>5.5.7</version>
|
|
|
</dependency>
|
|
|
<!--webService-->
|
|
|
<dependency>
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
<version>1.2.50</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
<version>${cxf.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
<version>${cxf.version}</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
|
<artifactId>pdfbox</artifactId>
|
|
|
<version>2.0.12</version>
|
|
|
</dependency>
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>commons-logging</groupId>-->
|
|
|
<!--<artifactId>commons-logging</artifactId>-->
|
|
|
<!--<version>1.2</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<!-- 客户端 -->
|
|
|
<!-- axis 1.4 jar start -->
|
|
|
<dependency>
|
|
|
<groupId>org.apache.axis</groupId>
|
|
|
<artifactId>axis</artifactId>
|
|
|
<version>1.4</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>commons-discovery</groupId>
|
|
|
<artifactId>commons-discovery</artifactId>
|
|
|
<version>0.2</version>
|
|
|
<exclusions>
|
|
|
<exclusion>
|
|
|
<groupId>commons-logging</groupId>
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
</exclusion>
|
|
|
</exclusions>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>org.apache.axis</groupId>
|
|
|
<artifactId>axis-jaxrpc</artifactId>
|
|
|
<version>1.4</version>
|
|
|
</dependency>
|
|
|
<dependency>
|
|
|
<groupId>junit</groupId>
|
|
|
<artifactId>junit</artifactId>
|
|
|
<version>4.12</version>
|
|
|
</dependency>
|
|
|
<!-- 热部署插件 -->
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
|
<!--<artifactId>spring-boot-devtools</artifactId>-->
|
|
|
<!--<scope>true</scope>-->
|
|
|
<!--<optional>true</optional> <!– 这个需要为 true 热部署才有效 –>-->
|
|
|
<!--</dependency>-->
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>org.apache.axis</groupId>-->
|
|
|
<!--<artifactId>axis-saaj</artifactId>-->
|
|
|
<!--<version>1.4</version>-->
|
|
|
<!--</dependency>-->
|
|
|
<!--<dependency>-->
|
|
|
<!--<groupId>wsdl4j</groupId>-->
|
|
|
<!--<artifactId>wsdl4j</artifactId>-->
|
|
|
<!--<version>1.6.2</version>-->
|
|
|
<!--</dependency>-->
|
|
|
|
|
|
<!-- mybatis自动生成所需的依赖start -->
|
|
|
<dependency>
|
|
|
<groupId>org.mybatis.generator</groupId>
|
|
|
<artifactId>mybatis-generator-core</artifactId>
|
|
|
<version>1.3.5</version>
|
|
|
</dependency>
|
|
|
<!-- mybatis自动生成所需的依赖end -->
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
<artifactId>guava</artifactId>
|
|
|
<version>19.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
<build>
|
|
|
<plugins>
|
|
|
<!-- 热部署插件 -->
|
|
|
<!--<plugin>-->
|
|
|
<!--<groupId>org.springframework.boot</groupId>-->
|
|
|
<!--<artifactId>spring-boot-maven-plugin</artifactId>-->
|
|
|
<!--<configuration>-->
|
|
|
<!--<fork>true</fork> <!– 如果没有该配置,devtools不会生效 –>-->
|
|
|
<!--</configuration>-->
|
|
|
<!--</plugin>-->
|
|
|
<!-- 资源文件拷贝插件 -->
|
|
|
<!--<plugin>-->
|
|
|
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
|
|
<!--<artifactId>maven-resources-plugin</artifactId>-->
|
|
|
<!--<version>2.7</version>-->
|
|
|
<!--<configuration>-->
|
|
|
<!--<encoding>UTF-8</encoding>-->
|
|
|
<!--</configuration>-->
|
|
|
<!--</plugin>-->
|
|
|
<!--<plugin>-->
|
|
|
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
|
|
<!--<artifactId>maven-surefire-plugin</artifactId>-->
|
|
|
<!--<configuration>-->
|
|
|
<!--<skipTests>true</skipTests>-->
|
|
|
<!--</configuration>-->
|
|
|
<!--</plugin>-->
|
|
|
<!-- java编译插件 -->
|
|
|
|
|
|
<!--<plugin>-->
|
|
|
<!--<!– 指定maven编译的jdk版本,如果不指定,maven3默认用jdk 1.5 maven2默认用jdk1.3 –>-->
|
|
|
<!--<groupId>org.apache.maven.plugins</groupId>-->
|
|
|
<!--<artifactId>maven-compiler-plugin</artifactId>-->
|
|
|
<!--<version>3.1</version>-->
|
|
|
<!--<configuration>-->
|
|
|
<!--<!– 一般而言,target与source是保持一致的,但是,有时候为了让程序能在其他版本的jdk中运行(对于低版本目标jdk,源代码中不能使用低版本jdk中不支持的语法),会存在target不同于source的情况 –>-->
|
|
|
<!--<source>1.8</source> <!– 源代码使用的JDK版本 –>-->
|
|
|
<!--<target>1.8</target> <!– 需要生成的目标class文件的编译版本 –>-->
|
|
|
<!--<encoding>UTF-8</encoding><!– 字符集编码 –>-->
|
|
|
<!--<verbose>true</verbose>-->
|
|
|
<!--<showWarnings>true</showWarnings>-->
|
|
|
<!--<fork>true</fork><!– 要使compilerVersion标签生效,还需要将fork设为true,用于明确表示编译版本配置的可用 –>-->
|
|
|
<!--<executable><!– path-to-javac –></executable><!– 使用指定的javac命令,例如:<executable>${JAVA_1_4_HOME}/bin/javac</executable> –>-->
|
|
|
<!--<!–<compilerVersion>1.3</compilerVersion>–><!– 指定插件将使用的编译器的版本 –>-->
|
|
|
<!--<meminitial>128m</meminitial><!– 编译器使用的初始内存 –>-->
|
|
|
<!--<maxmem>512m</maxmem><!– 编译器使用的最大内存 –>-->
|
|
|
<!--<!– <compilerArgument>-verbose -bootclasspath ${java.home}\lib\rt.jar</compilerArgument> 这个选项用来传递编译器自身不包含但是却支持的参数选项 –>-->
|
|
|
<!--</configuration>-->
|
|
|
<!--</plugin>-->
|
|
|
<plugin>
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
<configuration>
|
|
|
<source>1.8</source>
|
|
|
<target>1.8</target>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
|
|
|
<!-- mybatis-generator自动生成代码插件 -->
|
|
|
<plugin>
|
|
|
<groupId>org.mybatis.generator</groupId>
|
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
|
<version>1.3.5</version>
|
|
|
<configuration>
|
|
|
<verbose>true</verbose>
|
|
|
<overwrite>false</overwrite>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
</plugins>
|
|
|
<!--<resources>
|
|
|
<resource>
|
|
|
<directory>src/main/java</directory>
|
|
|
<includes>
|
|
|
<include>**/*.properties</include>
|
|
|
<include>**/*.xml</include>
|
|
|
</includes>
|
|
|
<filtering>false</filtering>
|
|
|
</resource>
|
|
|
<resource>
|
|
|
<directory>src/main/resources</directory>
|
|
|
<includes>
|
|
|
<include>**/*.xml</include>
|
|
|
<include>**/*.properties</include>
|
|
|
</includes>
|
|
|
<filtering>false</filtering>
|
|
|
</resource>
|
|
|
</resources>-->
|
|
|
</build>
|
|
|
|
|
|
</project>
|