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

129 lines
3.6 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-scheduling</artifactId>
<packaging>jar</packaging>
<description>调度服务</description>
<dependencies>
<dependency>
<groupId>com.red.circle</groupId>
<artifactId>framework-cloud</artifactId>
<exclusions>
<exclusion>
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.shardingsphere.elasticjob</groupId>
<artifactId>elasticjob-lite-spring-boot-starter</artifactId>
<version>${elasticjob.version}</version>
<exclusions>
<exclusion>
<artifactId>snakeyaml</artifactId>
<groupId>org.yaml</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql-connector-java.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${snakeyaml.version}</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>
</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>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
<elasticjob.version>3.0.4</elasticjob.version>
<snakeyaml.version>2.2</snakeyaml.version>
<mysql-connector-java.version>8.0.33</mysql-connector-java.version>
</properties>
<parent>
<artifactId>rc-dependencies</artifactId>
<groupId>com.red.circle</groupId>
<version>${revision}</version>
<relativePath>./../rc-dependencies/pom.xml</relativePath>
</parent>
</project>