<?xml version="1.0"?>
|
<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/maven-v4_0_0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<groupId>com.ld.base.io</groupId>
|
<artifactId>base-io-netty</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
<packaging>jar</packaging>
|
|
<parent>
|
<groupId>com.ld.base</groupId>
|
<artifactId>base-io</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</parent>
|
|
<properties>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<netty.version>4.1.25.Final</netty.version>
|
<!-- <netty.version>4.1.7.Final</netty.version>-->
|
</properties>
|
<dependencies>
|
<dependency>
|
<groupId>com.ld.base.io</groupId>
|
<artifactId>base-io-api</artifactId>
|
<version>1.0.0-SNAPSHOT</version>
|
</dependency>
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-transport</artifactId>
|
<version>${netty.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-transport-sctp</artifactId>
|
<version>${netty.version}</version>
|
</dependency>
|
<dependency>
|
<groupId>io.netty</groupId>
|
<artifactId>netty-handler</artifactId>
|
<version>${netty.version}</version>
|
</dependency>
|
<!-- <dependency>-->
|
<!-- <groupId>junit</groupId>-->
|
<!-- <artifactId>junit</artifactId>-->
|
<!-- <version>4.13.2</version>-->
|
<!-- </dependency>-->
|
</dependencies>
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
<version>3.1</version>
|
<configuration>
|
<source>1.8</source>
|
<target>1.8</target>
|
</configuration>
|
</plugin>
|
</plugins>
|
</build>
|
<repositories>
|
<repository>
|
<id>bsdn-maven-repository</id>
|
<url>http://nexus.bsdn.org/content/groups/public/</url>
|
</repository>
|
</repositories>
|
</project>
|