2022-04-24 12:09:30 +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>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-parent</artifactId>
|
2024-06-26 11:22:23 +08:00
|
|
|
|
<version>5.8.0-SNAPSHOT</version>
|
2022-04-24 12:09:30 +08:00
|
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>jeesite-web-fast</artifactId>
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
|
|
<description>Web 服务,也可为分离端提供接口服务</description>
|
|
|
|
|
|
|
|
|
|
|
|
<name>JeeSite Web Fast</name>
|
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
|
<inceptionYear>2013-Now</inceptionYear>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
|
|
|
|
|
|
<finalName>web</finalName><!-- war or jar 包的名称 -->
|
|
|
|
|
|
<start-class>com.jeesite.modules.FastApplication</start-class>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- docker setting -->
|
2024-02-28 10:35:36 +08:00
|
|
|
|
<docker.dockerHost>unix:///var/run/docker.sock</docker.dockerHost>
|
2023-10-16 20:06:08 +08:00
|
|
|
|
<docker.imageName>thinkgem/jeesite-web:latest</docker.imageName>
|
2024-02-28 10:35:36 +08:00
|
|
|
|
<!-- <docker.imageName>thinkgem/jeesite-web:amd64</docker.imageName>-->
|
|
|
|
|
|
<!-- <docker.platform>linux/amd64</docker.platform>-->
|
|
|
|
|
|
<!-- <docker.imageName>thinkgem/jeesite-web:arm64</docker.imageName>-->
|
|
|
|
|
|
<!-- <docker.platform>linux/arm64</docker.platform>-->
|
2023-10-16 20:06:08 +08:00
|
|
|
|
<docker.run.port>8980:8980</docker.run.port>
|
2022-04-24 12:09:30 +08:00
|
|
|
|
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- H2 DB -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 核心模块 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-core</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 在线文档接口 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-swagger</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 内容管理模块 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-cms</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 移动端模块 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-app</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 文件管理共享(标准版)
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-filemanager</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 文件在线预览(标准版)
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-module-filepreview</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
2024-04-01 12:02:36 +08:00
|
|
|
|
<!-- Vue发布包 https://gitee.com/thinkgem/jeesite-vue -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-vue-dist</artifactId>
|
2024-07-01 18:51:53 +08:00
|
|
|
|
<version>5.8.0-SNAPSHOT</version>
|
2024-04-01 12:02:36 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2022-04-24 12:09:30 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<finalName>${finalName}</finalName>
|
2023-04-05 18:55:08 +08:00
|
|
|
|
<!--<outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>-->
|
2022-04-24 12:09:30 +08:00
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Spring Boot -->
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
2022-04-30 11:16:41 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- war插件,war包名称不带版本号 -->
|
2022-04-24 12:09:30 +08:00
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<warName>${finalName}</warName>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Eclipse 插件 -->
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<wtpContextName>${finalName}</wtpContextName>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
|
<developer>
|
|
|
|
|
|
<id>thinkgem</id>
|
|
|
|
|
|
<name>WangZhen</name>
|
|
|
|
|
|
<email>thinkgem at 163.com</email>
|
|
|
|
|
|
<roles><role>Project lead</role></roles>
|
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
|
</developer>
|
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
|
|
<name>JeeSite</name>
|
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
<id>aliyun-repos</id>
|
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
|
<releases><enabled>true</enabled></releases>
|
|
|
|
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
|
|
|
|
</repository>
|
|
|
|
|
|
<repository>
|
|
|
|
|
|
<id>jeesite-repos</id>
|
2023-08-21 13:10:53 +08:00
|
|
|
|
<url>https://maven.jeesite.net/repository/maven-public</url>
|
2022-04-24 12:09:30 +08:00
|
|
|
|
</repository>
|
|
|
|
|
|
</repositories>
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
|
<id>aliyun-repos</id>
|
|
|
|
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
|
|
|
|
<releases><enabled>true</enabled></releases>
|
|
|
|
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
|
<id>jeesite-repos</id>
|
2023-08-21 13:10:53 +08:00
|
|
|
|
<url>https://maven.jeesite.net/repository/maven-public</url>
|
2022-04-24 12:09:30 +08:00
|
|
|
|
</pluginRepository>
|
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|