2026-04-09 21:33:09 +08:00

48 lines
1.3 KiB
XML

<?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>
<artifactId>order-start</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>order-adapter</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>order-inner-endpoint</artifactId>
</dependency>
</dependencies>
<build>
<finalName>${parent.artifactId}-${revision}</finalName>
<plugins>
<plugin>
<artifactId>spring-boot-maven-plugin</artifactId>
<groupId>org.springframework.boot</groupId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<parent>
<artifactId>rc-service-order</artifactId>
<groupId>com.red.circle</groupId>
<version>${revision}</version>
<relativePath>./../pom.xml</relativePath>
</parent>
</project>