Files
private-cloud/pom.xml

96 lines
3.3 KiB
XML
Raw Normal View History

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-01-08 21:19:25 +08:00
<groupId>net.irext.decoder</groupId>
<artifactId>irext-decode-service</artifactId>
<version>0.2.0</version>
2019-01-08 21:19:25 +08:00
<packaging>jar</packaging>
2018-12-13 23:01:52 +08:00
2019-01-08 21:19:25 +08:00
<name>IRext Decode Service</name>
<description>Decoding IR binaries online</description>
2018-12-13 23:01:52 +08:00
2019-01-08 21:19:25 +08:00
<parent>
<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>
<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>
<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>
<version>2.1.1.RELEASE</version>
2019-01-08 21:19:25 +08:00
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.13</version>
2019-01-08 21:19:25 +08:00
</dependency>
<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-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>