45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
|
<?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>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.loafle</groupId>
|
||
|
<artifactId>maven_parent_spring_boot</artifactId>
|
||
|
<version>1.5.9-RELEASE</version>
|
||
|
<relativePath/>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>com.loafle.overflow</groupId>
|
||
|
<artifactId>probe_container_general</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>com.loafle.overflow.probe_container_general</name>
|
||
|
<description>probe_container_general project for Spring Boot</description>
|
||
|
|
||
|
<properties>
|
||
|
<netty.version>4.1.17.Final</netty.version>
|
||
|
<jackson.version>2.9.2</jackson.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>io.netty</groupId>
|
||
|
<artifactId>netty-all</artifactId>
|
||
|
<version>${netty.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-core</artifactId>
|
||
|
<version>${jackson.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||
|
<artifactId>jackson-databind</artifactId>
|
||
|
<version>${jackson.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|