pom.xml 800 字节
Newer Older
武汉红喜's avatar
武汉红喜 已提交
1 2 3 4
<?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">
武汉红喜's avatar
武汉红喜 已提交
5 6
    <modelVersion>4.0.0</modelVersion>

武汉红喜's avatar
武汉红喜 已提交
7
    <parent>
武汉红喜's avatar
武汉红喜 已提交
8
        <artifactId>whatsmars-rpc</artifactId>
武汉红喜's avatar
武汉红喜 已提交
9
        <groupId>org.hongxi</groupId>
武汉红喜's avatar
武汉红喜 已提交
10
        <version>Rocket.S2</version>
武汉红喜's avatar
武汉红喜 已提交
11 12
    </parent>

武汉红喜's avatar
武汉红喜 已提交
13
    <artifactId>whatsmars-remoting</artifactId>
武汉红喜's avatar
武汉红喜 已提交
14 15
    <packaging>jar</packaging>
    <name>${project.artifactId}</name>
武汉红喜's avatar
武汉红喜 已提交
16
    <description>Transport of RPC</description>
武汉红喜's avatar
武汉红喜 已提交
17 18 19 20 21 22 23 24 25 26

    <dependencies>
        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-all</artifactId>
        </dependency>
    </dependencies>


</project>