<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">
	<modelVersion>4.0.0</modelVersion>
	<groupId>com.ovopark</groupId>
	<artifactId>shopweb-hotspot</artifactId>
	<version>1.0.1-SNAPSHOT</version>
	<packaging>pom</packaging>
	
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
   		<version>2.0.9.RELEASE</version>
        <relativePath/>
    </parent>  	
    	
	<modules>
		<module>shopweb-hotspot-common</module>
		<module>shopweb-hotspot-sdk</module>
		<module>shopweb-hotspot-server</module>
		<module>shopweb-hotspot-jna-server</module>
		<module>shopweb-hotspot-jna-sdk</module>
	</modules>
	
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <spring-cloud.version>Finchley.SR4</spring-cloud.version>
        <shopweb-hotspot-common>1.0.1-SNAPSHOT</shopweb-hotspot-common>
    </properties>		
    
    <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>
            
            <dependency>
            	<groupId>com.ovopark</groupId>
            	<artifactId>shopweb-hotspot-common</artifactId>
            	<version>${shopweb-hotspot-common}</version>
            </dependency>

			
        </dependencies>
    </dependencyManagement>
    
	<distributionManagement>
		<repository>
			<id>nexus-releases</id>
			<url>https://nexus.ovopark.com/nexus/content/repositories/releases/</url>
		</repository>
		<snapshotRepository>
			<id>nexus-snapshots</id>
			<url>https://nexus.ovopark.com/nexus/content/repositories/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>    
    
	<!-- 仓库地址 -->
	<repositories>
		<repository>
			<id>nexus</id>
			<name>Team Nexus Repository</name>
			<url>https://nexus.ovopark.com/nexus/content/groups/public/</url>
		</repository>
	</repositories>          
</project>