mirror of
https://github.com/jeequan/jeepay
synced 2024-11-17 23:08:03 +08:00
48 lines
1.7 KiB
XML
Executable File
48 lines
1.7 KiB
XML
Executable File
<?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>org.xxpay</groupId>
|
|
<artifactId>xxpay4dubbo</artifactId>
|
|
<version>1.0.0</version>
|
|
<packaging>pom</packaging>
|
|
<name>xxpay4dubbo</name>
|
|
<description>xxpay4dubbo</description>
|
|
|
|
<modules>
|
|
<module>xxpay4dubbo-api</module>
|
|
<module>xxpay4dubbo-web</module>
|
|
<module>xxpay4dubbo-service</module>
|
|
</modules>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>1.5.6.RELEASE</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>1.8</java.version>
|
|
<springboot.version>1.5.6.RELEASE</springboot.version>
|
|
<springboot.dubbo.version>1.0.0</springboot.dubbo.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.dubbo.springboot</groupId>
|
|
<artifactId>spring-boot-starter-dubbo</artifactId>
|
|
<version>${springboot.dubbo.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<version>${springboot.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project> |