<?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.example</groupId>
|
<artifactId>progressTrack</artifactId>
|
<version>1.0-SNAPSHOT</version>
|
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.2.4.RELEASE</version>
|
</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-web</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.xerial</groupId>
|
<artifactId>sqlite-jdbc</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.xerial</groupId>
|
<artifactId>sqlite-jdbc</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>5.3.7</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>4.1.2</version>
|
</dependency>
|
<dependency>
|
<groupId>net.coobird</groupId>
|
<artifactId>thumbnailator</artifactId>
|
<version>0.4.8</version>
|
</dependency>
|
<dependency>
|
<groupId>org.im4java</groupId>
|
<artifactId>im4java</artifactId>
|
<version>1.4.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-lang3</artifactId>
|
<version>3.10</version>
|
</dependency>
|
<dependency>
|
<groupId>org.projectlombok</groupId>
|
<artifactId>lombok</artifactId>
|
<version>1.18.24</version>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>1.5.20</version>
|
</dependency>
|
<dependency>
|
<groupId>com.baomidou</groupId>
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
<version>3.3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
<version>1.2.66</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-httpclient</groupId>
|
<artifactId>commons-httpclient</artifactId>
|
<version>3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>com.github.lgooddatepicker</groupId>
|
<artifactId>LGoodDatePicker</artifactId>
|
<version>8.2.0</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.5</version>
|
</dependency>
|
<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-classic</artifactId>
|
<version>1.2.11</version> <!-- 使用最新的版本 -->
|
</dependency>
|
<dependency>
|
<groupId>ch.qos.logback</groupId>
|
<artifactId>logback-core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>net.oschina.j2cache</groupId>
|
<artifactId>j2cache-spring-boot2-starter</artifactId>
|
<version>2.8.0-release</version>
|
</dependency>
|
<dependency>
|
<groupId>net.oschina.j2cache</groupId>
|
<artifactId>j2cache-core</artifactId>
|
<version>2.8.0-release</version>
|
<exclusions>
|
<exclusion>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-simple</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>org.slf4j</groupId>
|
<artifactId>slf4j-api</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
</dependency>
|
<!-- https://mvnrepository.com/artifact/org.springframework.data/spring-data-redis -->
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<configuration>
|
<fork>true</fork>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
|
<repositories>
|
<repository>
|
<id>public</id>
|
<name>aliyun nexus</name>
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
<releases>
|
<enabled>true</enabled>
|
</releases>
|
</repository>
|
<repository>
|
<id>mvnrepository</id>
|
<name>mvnrepository</name>
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/releases/</url>
|
</repository>
|
</repositories>
|
</project>
|