Files
cf_imes_server/cf-module-prod-executor/cf-module-prod-executor-biz/pom.xml
T

153 lines
5.9 KiB
XML
Raw Normal View History

2024-03-22 10:34:21 +08:00
<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">
2024-03-05 11:39:57 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.cf.imes</groupId>
<artifactId>cf-module-prod-executor</artifactId>
<version>${revision}</version>
</parent>
<packaging>jar</packaging>
<artifactId>cf-module-prod-executor-biz</artifactId>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
2024-03-22 10:34:21 +08:00
<!-- Spring Cloud 基础 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- 依赖服务 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-module-prod-executor-api</artifactId>
<version>${revision}</version>
</dependency>
2024-03-26 17:51:23 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-biz-dict</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- 业务组件 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-banner</artifactId>
</dependency>
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-biz-operatelog</artifactId>
</dependency>
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-biz-organ</artifactId>
</dependency>
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-biz-error-code</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- Web 相关 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-security</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- DB 相关 -->
<!-- <dependency>
<groupId>org.apache.shardingsphere</groupId>
<artifactId>sharding-jdbc-spring-boot-starter</artifactId>
<version>4.1.0</version>
</dependency>
-->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-mybatis</artifactId>
</dependency>
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-redis</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- RPC 远程调用相关 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-rpc</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- Registry 注册中心相关 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- Config 配置中心相关 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- Test 测试相关 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2024-03-22 10:34:21 +08:00
<!-- 工具类相关 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-excel</artifactId>
</dependency>
<dependency>
<groupId>cn.smallbun.screw</groupId>
2024-03-22 10:34:21 +08:00
<artifactId>screw-core</artifactId>
<!-- 实现数据库文档 -->
2024-03-05 11:39:57 +08:00
</dependency>
2024-03-22 10:34:21 +08:00
<!-- 监控相关 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-monitor</artifactId>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
2024-03-22 10:34:21 +08:00
<artifactId>spring-boot-admin-starter-server</artifactId>
<!-- 实现 Spring Boot Admin Server 服务端 -->
2024-03-05 11:39:57 +08:00
</dependency>
2024-03-22 10:34:21 +08:00
<!-- 三方云服务相关 -->
2024-03-05 11:39:57 +08:00
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-file</artifactId>
</dependency>
2024-03-22 10:34:21 +08:00
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
<version>0.10.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
</dependency>
<dependency>
<groupId>com.cf.imes</groupId>
<artifactId>cf-spring-boot-starter-biz-data-permission</artifactId>
</dependency>
<dependency>
<groupId>uk.co.jemos.podam</groupId>
<artifactId>podam</artifactId>
</dependency>
2024-03-05 11:39:57 +08:00
</dependencies>
<build>
2024-03-22 10:34:21 +08:00
<!-- 设置构建的 jar 包名 -->
2024-03-05 11:39:57 +08:00
<finalName>${project.artifactId}</finalName>
<plugins>
2024-03-22 10:34:21 +08:00
<!-- 打包 -->
2024-03-05 11:39:57 +08:00
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot.version}</version>
<executions>
<execution>
<goals>
2024-03-22 10:34:21 +08:00
<goal>repackage</goal>
<!-- 将引入的 jar 打入其中 -->
2024-03-05 11:39:57 +08:00
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>