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

64 lines
1.8 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>other-start</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>other-adapter</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>other-inner-endpoint</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>component-redis</artifactId>
</dependency>
<!-- Apache POI for Excel processing -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>5.2.3</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.2.3</version>
</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-other</artifactId>
<groupId>com.red.circle</groupId>
<version>${revision}</version>
<relativePath>./../pom.xml</relativePath>
</parent>
</project>