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"
|
|
|
|
|
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-16 22:09:10 +08:00
|
|
|
<groupId>net.irext.decoder</groupId>
|
|
|
|
|
<artifactId>irext-decode-service</artifactId>
|
2018-12-13 23:01:52 +08:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
2018-12-16 22:09:10 +08:00
|
|
|
<name>IRext Decode Service</name>
|
|
|
|
|
<description>Decoding IR binaries online</description>
|
2018-12-13 23:01:52 +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>
|
|
|
|
|
<relativePath/>
|
2018-12-13 23:01:52 +08:00
|
|
|
</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>
|
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>
|
2018-12-13 23:01:52 +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-01 08:31:55 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2018-12-13 23:01:52 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2018-12-16 22:09:10 +08:00
|
|
|
<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>
|
2018-12-13 23:01:52 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2018-12-30 22:41:37 +08:00
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>8.0.13</version>
|
2018-12-16 22:09:10 +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>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
<version>3.4.0</version>
|
|
|
|
|
</dependency>
|
2018-12-16 22:09:10 +08:00
|
|
|
<dependency>
|
2018-12-30 22:41:37 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
<version>2.1.1.RELEASE</version>
|
2018-12-13 23:01:52 +08:00
|
|
|
</dependency>
|
2018-12-24 23:37:18 +08:00
|
|
|
<dependency>
|
2018-12-30 22:41:37 +08:00
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
2018-12-24 23:37:18 +08:00
|
|
|
</dependency>
|
2019-01-01 08:31:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
<version>2.1.1.RELEASE</version>
|
|
|
|
|
</dependency>
|
2018-12-13 23:01:52 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|