102 lines
3.9 KiB
XML
102 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
|
<version>3.4.12</version>
|
||
|
|
<relativePath/>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<groupId>com.rczn</groupId>
|
||
|
|
<artifactId>Rc-autoplc-backend</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>Rc-autoplc-backend</name>
|
||
|
|
<description>Rc-autoplc-backend 聚合父模块</description>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
|
||
|
|
<modules>
|
||
|
|
<module>rczn-common</module>
|
||
|
|
<module>rczn-autoplc</module>
|
||
|
|
<module>rczn-admin</module>
|
||
|
|
</modules>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<java.version>17</java.version>
|
||
|
|
<!-- 项目特定依赖版本 -->
|
||
|
|
<mybatis.version>3.0.3</mybatis.version>
|
||
|
|
<pagehelper.version>2.1.0</pagehelper.version>
|
||
|
|
<jwt.version>4.4.0</jwt.version>
|
||
|
|
<knife4j.version>4.5.0</knife4j.version>
|
||
|
|
<jakarta.servlet-api.version>6.0.0</jakarta.servlet-api.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<!-- 使用 dependencyManagement 管理项目特定版本 -->
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<!-- 项目内部模块 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.rczn</groupId>
|
||
|
|
<artifactId>rczn-common</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.rczn</groupId>
|
||
|
|
<artifactId>rczn-autoplc</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 项目特定的外部依赖版本管理 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
|
<version>${mybatis.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.pagehelper</groupId>
|
||
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
||
|
|
<version>${pagehelper.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.auth0</groupId>
|
||
|
|
<artifactId>java-jwt</artifactId>
|
||
|
|
<version>${jwt.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.github.xiaoymin</groupId>
|
||
|
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
||
|
|
<version>${knife4j.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- Jakarta Servlet API -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.servlet</groupId>
|
||
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
||
|
|
<version>${jakarta.servlet-api.version}</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<pluginManagement>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<source>${java.version}</source>
|
||
|
|
<target>${java.version}</target>
|
||
|
|
<encoding>UTF-8</encoding>
|
||
|
|
<annotationProcessorPaths>
|
||
|
|
<path>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</path>
|
||
|
|
</annotationProcessorPaths>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</pluginManagement>
|
||
|
|
</build>
|
||
|
|
</project>
|