修改POM文件,实现父pom统一做版本裁决,去除掉子pom里耦合的具体版本信息,并且部分版本变量放在父pom里做管理

This commit is contained in:
wsm
2026-04-13 16:58:35 +08:00
parent 0f4d1f528f
commit 74e860747e
17 changed files with 77 additions and 57 deletions
+2 -3
View File
@@ -5,19 +5,18 @@
<parent>
<artifactId>jeecg-boot-parent</artifactId>
<groupId>org.jeecgframework.boot</groupId>
<version>3.8.1</version>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jeecg-module-supervision</artifactId>
<groupId>org.jeecgframework.boot</groupId>
<version>3.8.1</version>
<dependencies>
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-base-core</artifactId>
<version>3.8.1</version>
<version>${revision}</version>
</dependency>
</dependencies>
</project>