2018-01-10 23:39:55 +08:00
|
|
|
|
<?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>
|
2018-06-11 20:21:04 +08:00
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-parent</artifactId>
|
2025-09-27 19:53:13 +08:00
|
|
|
|
<version>5.14.0.springboot3-SNAPSHOT</version>
|
2018-06-11 20:21:04 +08:00
|
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
|
|
|
|
</parent>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
|
|
|
|
|
|
<artifactId>jeesite-web</artifactId>
|
|
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
2022-02-21 16:20:38 +08:00
|
|
|
|
<description>Web 服务,也可为分离端提供接口服务</description>
|
|
|
|
|
|
|
2018-10-15 20:39:09 +08:00
|
|
|
|
<name>JeeSite Web</name>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
|
<inceptionYear>2013-Now</inceptionYear>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
|
2025-08-01 10:51:25 +08:00
|
|
|
|
<finalName>web</finalName><!-- war 或 jar 包的名称 -->
|
2018-09-22 21:12:45 +08:00
|
|
|
|
<start-class>com.jeesite.modules.Application</start-class>
|
2023-06-28 19:07:22 +08:00
|
|
|
|
|
2022-04-24 11:36:38 +08:00
|
|
|
|
<!-- docker setting -->
|
2024-07-07 19:10:36 +08:00
|
|
|
|
<docker.run.port>8980:8980</docker.run.port>
|
2019-04-27 21:41:18 +08:00
|
|
|
|
|
2018-01-10 23:39:55 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2022-05-18 09:07:18 +08:00
|
|
|
|
|
2025-10-15 19:53:01 +08:00
|
|
|
|
<!-- 核心模块 --><!--suppress VulnerableLibrariesLocal -->
|
2018-01-10 23:39:55 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-core</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
2022-04-30 11:16:41 +08:00
|
|
|
|
|
2024-07-06 22:21:58 +08:00
|
|
|
|
<!-- 测试模块 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-test</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2023-04-15 11:50:02 +08:00
|
|
|
|
<!-- 移动端模块 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-app</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2023-06-29 12:17:05 +08:00
|
|
|
|
<!-- 在线文档接口 -->
|
2022-04-21 18:51:18 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-swagger</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
2023-06-29 12:17:05 +08:00
|
|
|
|
</dependency>
|
2022-04-30 11:16:41 +08:00
|
|
|
|
|
2022-04-21 18:51:18 +08:00
|
|
|
|
<!-- 内容管理模块 -->
|
2020-03-10 23:22:19 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
2022-01-24 23:20:26 +08:00
|
|
|
|
<artifactId>jeesite-module-cms</artifactId>
|
2020-03-10 23:22:19 +08:00
|
|
|
|
<version>${project.parent.version}</version>
|
2022-04-21 18:51:18 +08:00
|
|
|
|
</dependency>
|
2022-04-30 11:16:41 +08:00
|
|
|
|
|
2025-11-26 18:17:22 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-biz</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-11-29 23:40:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-erp</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-11-26 18:17:22 +08:00
|
|
|
|
|
2025-03-19 12:39:51 +08:00
|
|
|
|
<!-- 内容管理 AI + RAG 模块
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
2025-10-19 13:30:35 +08:00
|
|
|
|
<artifactId>jeesite-module-ai-cms</artifactId>
|
2025-03-19 12:39:51 +08:00
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
2023-04-15 11:50:02 +08:00
|
|
|
|
<!-- 内容管理-页面静态化(标准版)
|
2023-04-10 16:53:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
2023-04-15 11:50:02 +08:00
|
|
|
|
<artifactId>jeesite-module-cms-pagecache</artifactId>
|
2023-04-10 16:53:29 +08:00
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
2023-04-15 11:50:02 +08:00
|
|
|
|
<!-- 内容管理-网站全文检索(专业版)
|
2022-02-23 12:44:06 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
2023-04-15 11:50:02 +08:00
|
|
|
|
<artifactId>jeesite-module-cms-elasticsearch</artifactId>
|
2022-02-23 12:44:06 +08:00
|
|
|
|
<version>${project.parent.version}</version>
|
2023-04-15 11:50:02 +08:00
|
|
|
|
</dependency> -->
|
2022-02-23 12:44:06 +08:00
|
|
|
|
|
2022-01-24 23:20:26 +08:00
|
|
|
|
<!-- 文件管理共享(标准版)
|
2020-03-10 23:22:19 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
2022-01-24 23:20:26 +08:00
|
|
|
|
<artifactId>jeesite-module-filemanager</artifactId>
|
2020-03-10 23:22:19 +08:00
|
|
|
|
<version>${project.parent.version}</version>
|
2020-05-28 12:04:10 +08:00
|
|
|
|
</dependency> -->
|
2020-03-10 23:22:19 +08:00
|
|
|
|
|
2022-01-24 23:20:26 +08:00
|
|
|
|
<!-- 文件在线预览(标准版)
|
2021-04-15 23:14:52 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
2022-01-24 23:20:26 +08:00
|
|
|
|
<artifactId>jeesite-module-filepreview</artifactId>
|
2021-04-15 23:14:52 +08:00
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency> -->
|
2022-04-11 10:30:20 +08:00
|
|
|
|
|
2025-05-21 11:00:11 +08:00
|
|
|
|
<!-- 热部署工具
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
2018-01-10 23:39:55 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
2018-07-02 23:00:37 +08:00
|
|
|
|
<finalName>${finalName}</finalName>
|
2023-04-05 18:55:08 +08:00
|
|
|
|
<!--<outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>-->
|
2018-01-10 23:39:55 +08:00
|
|
|
|
<plugins>
|
|
|
|
|
|
|
2018-05-04 21:37:58 +08:00
|
|
|
|
<!-- Spring Boot -->
|
2018-01-10 23:39:55 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2019-11-07 00:04:51 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
|
</configuration>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
</plugin>
|
2022-04-30 11:16:41 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- war插件,war包名称不带版本号 -->
|
2018-07-02 23:00:37 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<warName>${finalName}</warName>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
2019-04-27 21:41:18 +08:00
|
|
|
|
<!-- Eclipse 插件 -->
|
2018-01-10 23:39:55 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
2018-07-02 23:00:37 +08:00
|
|
|
|
<wtpContextName>${finalName}</wtpContextName>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
2024-07-07 19:10:36 +08:00
|
|
|
|
<developers>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
<developer>
|
|
|
|
|
|
<id>thinkgem</id>
|
|
|
|
|
|
<name>WangZhen</name>
|
|
|
|
|
|
<email>thinkgem at 163.com</email>
|
|
|
|
|
|
<roles><role>Project lead</role></roles>
|
2024-07-07 19:10:36 +08:00
|
|
|
|
<timezone>+8</timezone>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
</developer>
|
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
|
|
<name>JeeSite</name>
|
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
<id>aliyun-repos</id>
|
2018-11-25 15:55:57 +08:00
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
<releases><enabled>true</enabled></releases>
|
|
|
|
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
|
|
|
|
</repository>
|
2019-12-26 11:18:24 +08:00
|
|
|
|
<repository>
|
2020-01-03 14:10:36 +08:00
|
|
|
|
<id>jeesite-repos</id>
|
2023-08-21 13:10:47 +08:00
|
|
|
|
<url>https://maven.jeesite.net/repository/maven-public</url>
|
2019-12-26 11:18:24 +08:00
|
|
|
|
</repository>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
</repositories>
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
|
<id>aliyun-repos</id>
|
2018-11-25 15:55:57 +08:00
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
2020-07-30 10:44:56 +08:00
|
|
|
|
<releases><enabled>true</enabled></releases>
|
|
|
|
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
|
<id>jeesite-repos</id>
|
2023-08-21 13:10:47 +08:00
|
|
|
|
<url>https://maven.jeesite.net/repository/maven-public</url>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
</pluginRepository>
|
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|