You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.0 KiB
86 lines
3.0 KiB
<?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>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.6.2</version>
|
|
<relativePath/> <!-- 始终从仓库获取 -->
|
|
</parent>
|
|
<groupId>com.canvas.web</groupId>
|
|
<artifactId>yxk_canvasScreen</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<modules>
|
|
<module>admin</module>
|
|
<module>common</module>
|
|
<module>generator</module>
|
|
<module>quartz</module>
|
|
<module>queue</module>
|
|
<module>system</module>
|
|
</modules>
|
|
|
|
<name>多媒体后台管理系统</name>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<!-- 表示打包时跳过mvn test -->
|
|
<maven.test.skip>true</maven.test.skip>
|
|
<!--全局配置项目版本号-->
|
|
<version>1.0-SNAPSHOT</version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- 子模块依赖 -->
|
|
<dependency>
|
|
<groupId>com.javaweb</groupId>
|
|
<artifactId>javaweb-common</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.javaweb</groupId>
|
|
<artifactId>javaweb-generator</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.javaweb</groupId>
|
|
<artifactId>javaweb-system</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.javaweb</groupId>
|
|
<artifactId>javaweb-admin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.javaweb</groupId>
|
|
<artifactId>javaweb-quartz</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.javaweb</groupId>
|
|
<artifactId>javaweb-queue</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<!-- 第三方依赖 -->
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.10</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>1.2.62</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|