2018-04-22 11:00:44 +00: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>
|
|
|
|
|
|
|
|
<parent>
|
2018-04-25 09:00:33 +00:00
|
|
|
<groupId>com.loafle.maven</groupId>
|
2018-04-22 11:00:44 +00:00
|
|
|
<artifactId>maven_parent_jar</artifactId>
|
|
|
|
<version>1.0.0-RELEASE</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>com.loafle.commons</groupId>
|
|
|
|
<artifactId>server-java</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<name>com.loafle.commons.server-java</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<netty.version>4.1.17.Final</netty.version>
|
2018-04-23 16:16:25 +00:00
|
|
|
<spring.version>5.0.5.RELEASE</spring.version>
|
2018-04-22 11:00:44 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
<version>${netty.version}</version>
|
|
|
|
</dependency>
|
2018-04-23 16:16:25 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
2018-04-22 11:00:44 +00:00
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
</build>
|
|
|
|
</project>
|