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

92 lines
2.7 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>
<description>Slots水果游戏</description>
<artifactId>game-fruit</artifactId>
<dependencies>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>game-fruit-inner-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
<exclusions>
<exclusion>
<artifactId>spring-boot-starter-tomcat</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<artifactId>spring-boot-starter-undertow</artifactId>
<groupId>org.springframework.boot</groupId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>framework-mybatis</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>other-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>order-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>component-redis</artifactId>
</dependency>
</dependencies>
<build>
<finalName>${project.name}-${revision}</finalName>
<plugins>
<plugin>
<artifactId>spring-boot-maven-plugin</artifactId>
<groupId>org.springframework.boot</groupId>
<!-- <configuration>-->
<!-- <fork>true</fork>-->
<!-- <classifier>exec</classifier>-->
<!-- </configuration>-->
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<parent>
<artifactId>rc-service-game</artifactId>
<groupId>com.red.circle</groupId>
<version>${revision}</version>
<relativePath>./../pom.xml</relativePath>
</parent>
</project>