2023-09-21 15:30:19 +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-01-08 10:40:08 +08:00
|
|
|
|
<version>5.6.1.springboot3-SNAPSHOT</version>
|
2023-09-21 15:30:19 +08:00
|
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>jeesite-web-mini</artifactId>
|
|
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
|
|
|
|
<description>Web 服务,最小化加载,可以甚至关闭数据源</description>
|
|
|
|
|
|
|
|
|
|
|
|
<name>JeeSite Web</name>
|
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
|
<inceptionYear>2013-Now</inceptionYear>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
|
|
|
|
|
|
<finalName>web</finalName><!-- war or jar 包的名称 -->
|
|
|
|
|
|
<start-class>com.jeesite.modules.MiniApplication</start-class>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- docker setting -->
|
|
|
|
|
|
<docker.run.port>8980:8980</docker.run.port>
|
|
|
|
|
|
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- MySql -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- JeeSite -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
|
<artifactId>jeesite-framework</artifactId>
|
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
|
</dependency>
|
2024-02-01 09:20:47 +08:00
|
|
|
|
|
2023-09-21 15:30:19 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
2024-01-15 13:45:51 +08:00
|
|
|
|
<!--<artifactId>spring-boot-starter-undertow</artifactId>-->
|
|
|
|
|
|
</dependency>
|
2023-09-21 15:30:19 +08:00
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<finalName>${finalName}</finalName>
|
|
|
|
|
|
<!--<outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>-->
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Spring Boot -->
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<includeSystemScope>true</includeSystemScope>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- war插件,war包名称不带版本号 -->
|
|
|
|
|
|
<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>
|
|
|
|
|
|
<url>https://maven.jeesite.net/repository/maven-public</url>
|
|
|
|
|
|
</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>
|
|
|
|
|
|
<url>https://maven.jeesite.net/repository/maven-public</url>
|
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|