Files
hudi-service/service-configuration/pom.xml
lanyuanxiaoyao ceed44d43a feature(dependencies): 增加依赖模块
增加一个依赖模块,统一项目使用的主要 jar 依赖版本,但又不写在父项目里,防止加入一些非服务模块,比如启动命令行
2024-03-05 15:16:45 +08:00

22 lines
762 B
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>
<parent>
<groupId>com.lanyuanxiaoyao</groupId>
<artifactId>hudi-service</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>service-configuration</artifactId>
<dependencies>
<dependency>
<groupId>com.lanyuanxiaoyao</groupId>
<artifactId>service-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>