<?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">
	<modelVersion>4.0.0</modelVersion>

	<groupId>com.icetech</groupId>
	<artifactId>icecloud-paycenter-master</artifactId>
	<version>100.0-SNAPSHOT</version>
	<packaging>pom</packaging>

	<name>icecloud-paycenter-master</name>
	<description>支付中心</description>

	<parent>
		<groupId>com.icetech</groupId>
		<artifactId>icecloud-master</artifactId>
		<version>1.0-SNAPSHOT</version>
	</parent>

    <modules>
        <module>icecloud-paycenter-api</module>
        <module>icecloud-paycenter-common</module>
        <module>icecloud-paycenter-controller</module>
        <module>icecloud-paycenter-domain</module>
        <module>icecloud-paycenter-dao</module>
        <module>icecloud-paycenter-service</module>
        <module>icecloud-paycenter-web</module>
    </modules>

	<properties>
		<!--	系统jar依赖	-->
		<paycenter-version>100.0-SNAPSHOT</paycenter-version>
		<!--	外部系统jar依赖	-->
		<taskcenter-version>100.0-SNAPSHOT</taskcenter-version>
		<web-version>100.0-SNAPSHOT</web-version>
		<datacenter-version>100.0-SNAPSHOT</datacenter-version>
        <!--<api-version>100.0-SNAPSHOT</api-version>-->
        <api-version>1.1-SNAPSHOT</api-version>
        <cloudcenter-version>100.0-SNAPSHOT</cloudcenter-version>

		<commonbase-version>1.0-SNAPSHOT</commonbase-version>
		<wx-pay-version>3.6.0</wx-pay-version>
        <swagger-version>2.8.0</swagger-version>
        <cmbc-version>1.0</cmbc-version>
		<alipay-sdk-version>4.10.192.ALL</alipay-sdk-version>
		<mybatisplus.spring.boot.version>3.3.2</mybatisplus.spring.boot.version>
		<dockerfile-version>1.4.9</dockerfile-version>
	</properties>

	<dependencies>
        <dependency>
            <groupId>com.icetech</groupId>
            <artifactId>icecloud-common-base</artifactId>
            <version>${commonbase-version}</version>
        </dependency>
		<!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
		<dependency>
			<groupId>commons-httpclient</groupId>
			<artifactId>commons-httpclient</artifactId>
			<version>3.1</version>
		</dependency>
		<dependency>
			<groupId>com.alibaba</groupId>
			<artifactId>fastjson</artifactId>
			<version>1.2.74</version>
		</dependency>

		<!-- 开发工具支持 -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-devtools</artifactId>
			<optional>true</optional>
			<scope>runtime</scope>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>com.baomidou</groupId>
			<artifactId>mybatis-plus-boot-starter</artifactId>
			<version>${mybatisplus.spring.boot.version}</version>
		</dependency>
		<dependency>
			<groupId>org.mybatis.spring.boot</groupId>
			<artifactId>mybatis-spring-boot-starter</artifactId>
			<version>2.1.3</version>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-aop</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-jdbc</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>
	</dependencies>
	<!--deploy 配置-->
	<distributionManagement>
		<repository>
			<id>nexus-releases</id>
			<name>Nexus Release Repository</name>
			<url>http://mvn.icecloud-car.com/nexus/content/repositories/releases/</url>
		</repository>

		<snapshotRepository>
			<id>nexus-snapshots</id>
			<name>Nexus snapshots Repository</name>
			<url>http://mvn.icecloud-car.com/nexus/content/repositories/snapshots/</url>
		</snapshotRepository>
	</distributionManagement>
	<!--私服仓库配置-->
	<repositories>
		<repository>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
			<id>public</id>
			<name>public</name>
			<url>http://mvn.icecloud-car.com/nexus/content/groups/public/</url>
		</repository>
	</repositories>
</project>
