| 1234567891011121314151617181920212223 |
- <?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>
- <parent>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-order</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>business-order-api</artifactId>
- <name>business-order-api</name>
- <description>统一交易订单对外 API(供其他业务模块依赖,不含实现)</description>
- <dependencies>
- <dependency>
- <groupId>com.xinghuacuntravel</groupId>
- <artifactId>business-order-bean</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </project>
|