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

133 lines
3.9 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>rc-examples</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>framework-cloud</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.alibaba.cloud</groupId>-->
<!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.alibaba.cloud</groupId>-->
<!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.cloud</groupId>-->
<!-- <artifactId>spring-cloud-starter-bootstrap</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-web</artifactId>-->
<!-- </dependency>-->
<!-- 反射,扫描包类 -->
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.12</version>
</dependency>
<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.28.0-GA</version>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>console-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>auth-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>external-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>order-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>other-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>wallet-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>auth-inner-api</artifactId>
</dependency>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>framework-mybatis</artifactId>
</dependency>
</dependencies>
<build>
<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>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<parent>
<artifactId>rc-dependencies</artifactId>
<groupId>com.red.circle</groupId>
<version>${revision}</version>
<relativePath>./../rc-dependencies/pom.xml</relativePath>
</parent>
</project>