<?xml version="1.0" encoding="UTF-8"?>
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
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.ansel</groupId>
|
<artifactId>api-screen-master</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<packaging>war</packaging>
|
|
<name>api-screen-master</name>
|
<description>A api-screen-master Management System</description>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.0.2.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<java.version>1.8</java.version>
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<!-- <exclusions>-->
|
<!-- <exclusion>-->
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
<!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
|
<!-- </exclusion>-->
|
<!-- </exclusions>-->
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
</dependency>
|
|
<!-- oracle -->
|
<dependency>
|
<groupId>com.oracle.database.jdbc</groupId>
|
<artifactId>ojdbc8</artifactId>
|
<version>12.2.0.1</version>
|
</dependency>
|
|
<!-- SqlServer -->
|
<!-- <dependency>-->
|
<!-- <groupId>com.microsoft.sqlserver</groupId>-->
|
<!-- <artifactId>sqljdbc4</artifactId>-->
|
<!-- <scope>4.0</scope>-->
|
<!-- <version>4.0</version>-->
|
<!-- </dependency>-->
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>druid</artifactId>
|
<version>1.1.10</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jetty</artifactId>
|
<scope>provided</scope>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
<!-- 邮件 -->
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-mail -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-mail</artifactId>
|
<version>2.0.1.RELEASE</version>
|
</dependency>
|
|
<!--spring切面aop依赖-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger2 -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.8.0</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui -->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.7.0</version>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.47</version>
|
</dependency>
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.8.1</version><!--$NO-MVN-MAN-VER$-->
|
</dependency>
|
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.4</version>
|
</dependency>
|
|
<!-- jwt-token验证拦截�?-->
|
<dependency>
|
<groupId>com.auth0</groupId>
|
<artifactId>java-jwt</artifactId>
|
<version>3.4.0</version>
|
</dependency>
|
|
<!-- ftp -->
|
<dependency>
|
<groupId>org.apache.camel</groupId>
|
<artifactId>camel-ftp</artifactId>
|
<version>2.13.2</version>
|
</dependency>
|
|
<!--spring boot 整合shiro依赖-->
|
<dependency>
|
<groupId>org.apache.shiro</groupId>
|
<artifactId>shiro-spring</artifactId>
|
<version>1.3.1</version>
|
</dependency>
|
<!--shiro依赖-->
|
<dependency>
|
<groupId>org.apache.shiro</groupId>
|
<artifactId>shiro-all</artifactId>
|
<version>1.3.1</version>
|
</dependency>
|
<!--shiro添加ehcache缓存 -->
|
<dependency>
|
<groupId>org.apache.shiro</groupId>
|
<artifactId>shiro-ehcache</artifactId>
|
<version>1.2.6</version>
|
</dependency>
|
<!--
|
包含支持UI模版(Velocity,FreeMarker,JasperReports),
|
邮件服务�?
|
脚本服务(JRuby)�?
|
缓存Cache(EHCache),
|
任务计划Scheduling(uartz)�?
|
-->
|
<dependency>
|
<groupId>org.springframework</groupId>
|
<artifactId>spring-context-support</artifactId>
|
</dependency>
|
<!--thymeleaf-shiro标签-->
|
<dependency>
|
<groupId>com.github.theborakompanioni</groupId>
|
<artifactId>thymeleaf-extras-shiro</artifactId>
|
<version>2.0.0</version>
|
</dependency>
|
<!-- httpclient -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.3</version>
|
</dependency>
|
<!-- 提供FileBody、StringBody和MultipartEntity 使用httpClient上传文件需要的�?-->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpmime</artifactId>
|
<version>4.5.3</version>
|
</dependency>
|
|
|
<!-- spring jpa动态查�?-->
|
<!-- <dependency>-->
|
<!-- <groupId>org.springside</groupId>-->
|
<!-- <artifactId>springside-core</artifactId>-->
|
<!-- <version>4.2.3-GA</version>-->
|
<!-- </dependency>-->
|
|
<!-- 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/com.belerweb/pinyin4j -->
|
<dependency>
|
<groupId>com.belerweb</groupId>
|
<artifactId>pinyin4j</artifactId>
|
<version>2.5.0</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.squareup.okhttp3</groupId>
|
<artifactId>okhttp</artifactId>
|
<version>3.14.2</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>2.1.7</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
</dependency>
|
</dependencies>
|
|
<!-- <build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<fork>true</fork>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build> -->
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
</plugin>
|
</plugins>
|
</build>
|
|
</project>
|