<?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">
    <parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.0.6.RELEASE</version>
        <relativePath>../pom.xml</relativePath>
	</parent>
    
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.bizvane</groupId>
	<artifactId>message-facade</artifactId>
    <version>yiwen-1.0.0-SNAPSHOT</version>
	<packaging>jar</packaging>
	<name>message-facade</name>
	<description>message-facade</description>

    <dependencies>
        <!-- message基础model -->
        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>message-base-model</artifactId>
            <version>yiwen-1.0.0-SNAPSHOT</version>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>common-utils</artifactId>
            <version>1.0.10-SNAPSHOT</version>
        </dependency>
		
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.7.0</version>
        </dependency>

        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.7.0</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>${spring.version}</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-openfeign-core</artifactId>
            <version>2.0.0.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.0</version>
        </dependency>

        <dependency>
            <groupId>com.bizvane</groupId>
            <artifactId>message-gateway-inter</artifactId>
            <version>yiwen-1.0.0-SNAPSHOT</version>
        </dependency>
    </dependencies>
    
    <distributionManagement>
        <repository>
            <id>julu-release</id>
            <url>http://repo.bizvane.com/nexus/content/repositories/julu-release</url>
        </repository>
        <snapshotRepository>
            <id>snapshots</id>
            <url>http://repo.bizvane.com/nexus/content/repositories/snapshots</url>
          
        </snapshotRepository>
    </distributionManagement>
    
    <repositories>
        <repository>
            <id>julu</id>
            <name>julu</name>
            <url>http://repo.bizvane.com/nexus/content/groups/julu</url>
              <snapshots>
                        <enabled>true</enabled>  
                        <updatePolicy>always</updatePolicy>  
              </snapshots>
        </repository>
        
      <repository>
         <id>julu-release</id>
         <url>http://repo.bizvane.com/nexus/content/repositories/julu-release</url>
      </repository>
    </repositories>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>