<?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.mindskip</groupId>
|
<artifactId>xzs</artifactId>
|
<version>3.9.0</version>
|
<packaging>jar</packaging>
|
|
<name>xzs</name>
|
<url>https://www.mindskip.net/xzs.html</url>
|
<description>学之思开源考试系统 - mysql版,支持多种题型:选择题、多选题、判断题、填空题、解答题以及数学公式,包含PC端、小程序端,扩展性强,部署方便(集成部署、前后端分离部署、docker部署)、界面设计友好、代码结构清晰</description>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
<java.version>1.8</java.version>
|
<mysql.version>8.0.17</mysql.version>
|
<spring.boot.version>2.1.6.RELEASE</spring.boot.version>
|
<mapstruct.version>1.4.1.Final</mapstruct.version>
|
<easyExcel.version>3.3.2</easyExcel.version>
|
</properties>
|
|
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.1.6.RELEASE</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
|
|
<issueManagement>
|
<system>Gitee Issue</system>
|
<url>https://gitee.com/mindskip/xzs-mysql/issues</url>
|
</issueManagement>
|
|
<licenses>
|
<license>
|
<name>GNU Affero General Public License v3.0</name>
|
<url>https://www.gnu.org/licenses/agpl-3.0.txt</url>
|
</license>
|
</licenses>
|
|
<developers>
|
<developer>
|
<organization>武汉思维跳跃科技有限公司</organization>
|
<organizationUrl>https://www.mindskip.net</organizationUrl>
|
<email>mindskip@qq.com</email>
|
</developer>
|
</developers>
|
|
<scm>
|
<connection>scm:git@gitee.com:mindskip/xzs-mysql.git</connection>
|
<developerConnection>scm:git@gitee.com:mindskip/xzs-mysql.git</developerConnection>
|
<url>git@gitee.com:mindskip/xzs-mysql.git</url>
|
</scm>
|
|
|
<repositories>
|
<repository>
|
<id>aliyun-releases</id>
|
<url>https://maven.aliyun.com/repository/public</url>
|
</repository>
|
</repositories>
|
|
|
<dependencies>
|
|
<!-- easy excel -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>easyexcel</artifactId>
|
<version>${easyExcel.version}</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-validation</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
<version>${spring.boot.version}</version>
|
<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-undertow</artifactId>
|
<version>${spring.boot.version}</version>
|
</dependency>
|
|
<!--MyBatis Plus 依赖-->
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.5.4</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.github.pagehelper</groupId>
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
<version>1.2.12</version>
|
<exclusions>
|
<exclusion>
|
<artifactId>jsqlparser</artifactId>
|
<groupId>com.github.jsqlparser</groupId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-aop -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
<version>3.1.0</version>
|
</dependency>
|
<!--swagger 依赖-->
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
<dependency>
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger-ui</artifactId>
|
<version>2.9.2</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.xiaoymin</groupId>
|
<artifactId>swagger-bootstrap-ui</artifactId>
|
<version>1.6</version>
|
</dependency>
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
<version>${mysql.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
<version>2.6.1</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.9</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.modelmapper</groupId>
|
<artifactId>modelmapper</artifactId>
|
<version>2.3.3</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.9</version>
|
</dependency>
|
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<version>1.9.3</version>
|
</dependency>
|
|
<dependency>
|
<groupId>com.qiniu</groupId>
|
<artifactId>qiniu-java-sdk</artifactId>
|
<version>7.2.25</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<version>${spring.boot.version}</version>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security</groupId>
|
<artifactId>spring-security-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
<!-- hot debug -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-devtools</artifactId>
|
<version>${spring.boot.version}</version>
|
<scope>provided</scope>
|
<optional>true</optional>
|
</dependency>
|
|
<dependency>
|
<groupId>com.amazonaws</groupId>
|
<artifactId>aws-java-sdk-s3</artifactId>
|
<version>1.11.415</version>
|
</dependency>
|
|
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.4</version>
|
</dependency>
|
|
<!-- 文件上传 -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpmime</artifactId>
|
<version>4.5.7</version>
|
</dependency>
|
<!-- JSON -->
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.41</version>
|
</dependency>
|
<!-- POI -->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.16</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.mapstruct</groupId>
|
<artifactId>mapstruct</artifactId>
|
<version>${mapstruct.version}</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.mapstruct</groupId>
|
<artifactId>mapstruct-processor</artifactId>
|
<version>${mapstruct.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.8.1</version>
|
<configuration>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
</project>
|