pom.xml 1.6 KB
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 8 9
    <parent>
        <artifactId>whatsmars-dubbo</artifactId>
        <groupId>org.hongxi</groupId>
武汉红喜's avatar
武汉红喜 已提交
10
        <version>ByteStack.CN1</version>
武汉红喜's avatar
武汉红喜 已提交
11 12
    </parent>

武汉红喜's avatar
武汉红喜 已提交
13
    <artifactId>dubbo-spring-boot-autoconfigure</artifactId>
武汉红喜's avatar
武汉红喜 已提交
14 15 16
    <packaging>jar</packaging>
    <name>${project.artifactId}</name>
    <description>dubbo autoconfigure</description>
武汉红喜's avatar
武汉红喜 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-logging</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>dubbo</artifactId>
            <optional>true</optional>
        </dependency>
武汉红喜's avatar
武汉红喜 已提交
39 40 41 42 43
        <dependency>
            <groupId>io.netty</groupId>
            <artifactId>netty-all</artifactId>
            <optional>true</optional>
        </dependency>
武汉红喜's avatar
武汉红喜 已提交
44 45 46
    </dependencies>

</project>