2018-12-13 23:01:52 +08:00
|
|
|
<?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"
|
2019-01-08 21:19:25 +08:00
|
|
|
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>
|
2018-12-13 23:01:52 +08:00
|
|
|
|
2019-06-07 11:39:25 +08:00
|
|
|
<groupId>net.irext.server</groupId>
|
2019-08-05 21:56:29 +08:00
|
|
|
<artifactId>private-server</artifactId>
|
2022-03-03 20:05:51 +08:00
|
|
|
<version>1.2.7</version>
|
2019-01-08 21:19:25 +08:00
|
|
|
<packaging>jar</packaging>
|
2018-12-13 23:01:52 +08:00
|
|
|
|
2019-06-07 11:39:25 +08:00
|
|
|
<name>IRext Private Server</name>
|
2019-06-08 12:02:59 +08:00
|
|
|
<description>IRext Private Server</description>
|
2018-12-13 23:01:52 +08:00
|
|
|
|
2019-01-08 21:19:25 +08:00
|
|
|
<parent>
|
2018-12-30 22:41:37 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.1.1.RELEASE</version>
|
2019-01-08 21:19:25 +08:00
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
2018-12-13 23:01:52 +08:00
|
|
|
|
2019-01-08 21:19:25 +08:00
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
</properties>
|
2018-12-13 23:01:52 +08:00
|
|
|
|
2019-01-08 21:19:25 +08:00
|
|
|
<dependencies>
|
2022-01-08 21:28:05 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core -->
|
2018-12-30 22:41:37 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.3.2</version>
|
|
|
|
|
</dependency>
|
2019-01-08 21:19:25 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2018-12-30 22:41:37 +08:00
|
|
|
<version>2.1.1.RELEASE</version>
|
2019-01-08 21:19:25 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
2018-12-30 22:41:37 +08:00
|
|
|
<version>2.1.1.RELEASE</version>
|
2019-01-08 21:19:25 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2020-07-02 01:58:02 +00:00
|
|
|
<version>8.0.16</version>
|
2019-01-08 21:19:25 +08:00
|
|
|
</dependency>
|
2018-12-30 22:41:37 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
</dependency>
|
2019-01-08 21:19:25 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
<version>2.1.1.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
<version>2.1.1.RELEASE</version>
|
|
|
|
|
</dependency>
|
2019-02-09 15:37:57 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
<version>2.7.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okio</groupId>
|
|
|
|
|
<artifactId>okio</artifactId>
|
|
|
|
|
<version>2.2.2</version>
|
|
|
|
|
</dependency>
|
2019-06-08 12:02:59 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>2.6.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
<artifactId>javax.ws.rs-api</artifactId>
|
|
|
|
|
<version>2.0.1</version>
|
|
|
|
|
</dependency>
|
2019-01-08 21:19:25 +08:00
|
|
|
</dependencies>
|
2018-12-13 23:01:52 +08:00
|
|
|
|
2019-01-08 21:19:25 +08:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2018-12-13 23:01:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|