<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">  
    <modelVersion>4.0.0</modelVersion>  
    <parent> 
        <groupId>com.foxnicweb.web</groupId>  
        <artifactId>parent</artifactId>  
        <version>1.7.0.RELEASE</version>  
        <relativePath>../../publish.xml</relativePath>  
        <!-- lookup parent from repository --> 
    </parent>  
    <artifactId>framework-cloud</artifactId>  
    <packaging>jar</packaging>  
    <name>Foxnic-Web-Framework-Cloud</name>  
    <url>http://foxnicweb.com/docs/doc.html</url>  
    <description>Common code for Microservices of Foxnic-Web apps</description>  
    <developers> 
        <developer> 
            <name>LeeFJ</name>  
            <email>leefangjie@qq.com</email>  
            <organization>FoxnicWeb</organization>  
            <url>http://foxnicweb.com/docs/doc.html</url>  
            <organizationUrl>http://web.foxnicweb.com/</organizationUrl> 
        </developer> 
    </developers>  
    <scm> 
        <connection>scm:git:https://gitee.com/LeeFJ/foxnic</connection>  
        <developerConnection>scm:git@gitee.com:LeeFJ/foxnic.git</developerConnection>  
        <url>https://gitee.com/LeeFJ/foxnic</url>  
        <tag>1.7.0.RELEASE</tag> 
    </scm>  
    <licenses> 
        <license> 
            <name>The Apache Software License, Version 2.0</name>  
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>  
            <distribution>repo</distribution>  
            <comments>A business-friendly OSS license</comments> 
        </license> 
    </licenses>  
    <dependencies> 
        <dependency> 
            <groupId>com.foxnicweb.web</groupId>  
            <artifactId>domain</artifactId>  
            <version>${platform.version}</version> 
        </dependency>  
        <dependency> 
            <groupId>com.foxnicweb.web</groupId>  
            <artifactId>framework-boot</artifactId>  
            <version>${platform.version}</version> 
        </dependency>  
        <!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-micro-spring-boot-starter -->  
        <dependency> 
            <groupId>com.github.xiaoymin</groupId>  
            <artifactId>knife4j-micro-spring-boot-starter</artifactId>  
            <version>${knife4j.version}</version> 
        </dependency>  
        <!-- 微服务相关 -->  
        <dependency> 
            <groupId>org.springframework.cloud</groupId>  
            <artifactId>spring-cloud-starter-netflix-ribbon</artifactId> 
        </dependency>  
        <dependency> 
            <groupId>org.springframework.cloud</groupId>  
            <artifactId>spring-cloud-starter-openfeign</artifactId> 
        </dependency>  
        <dependency> 
            <groupId>com.alibaba.cloud</groupId>  
            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>  
            <version>${alibaba.cloud.version}</version> 
        </dependency>  
        <dependency> 
            <groupId>com.alibaba.cloud</groupId>  
            <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>  
            <version>${alibaba.cloud.version}</version> 
        </dependency>  
        <dependency> 
            <groupId>com.alibaba.csp</groupId>  
            <artifactId>sentinel-datasource-nacos</artifactId>  
            <version>${sentinel.version}</version> 
        </dependency>  
        <dependency> 
            <groupId>org.springframework.cloud</groupId>  
            <artifactId>spring-cloud-context</artifactId> 
        </dependency> 
    </dependencies>  
    <dependencyManagement> 
        <dependencies> 
            <dependency> 
                <groupId>org.springframework.cloud</groupId>  
                <artifactId>spring-cloud-dependencies</artifactId>  
                <version>${spring.cloud.version}</version>  
                <type>pom</type>  
                <scope>import</scope> 
            </dependency> 
        </dependencies> 
    </dependencyManagement> 
</project>
