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>
|
2020-07-27 17:52:27 +08:00
|
|
|
<version>4.2.1-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>
|
|
|
|
|
|
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>
|
|
|
|
|
|
2020-05-24 23:27:20 +08:00
|
|
|
<finalName>web</finalName><!-- war or jar 包的名称 -->
|
2018-09-22 21:12:45 +08:00
|
|
|
<start-class>com.jeesite.modules.Application</start-class>
|
2018-01-16 22:59:46 +08:00
|
|
|
|
|
|
|
|
<!-- environment setting -->
|
2018-01-10 23:39:55 +08:00
|
|
|
<eclipse-plugin-download-sources>false</eclipse-plugin-download-sources>
|
|
|
|
|
<eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>
|
|
|
|
|
|
2020-06-03 23:23:16 +08:00
|
|
|
<!-- docker setting -->
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<!-- 核心模块 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-module-core</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-04-19 22:26:53 +08:00
|
|
|
<!-- 在线文档接口 -->
|
2020-03-10 23:22:19 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-module-swagger</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-05-29 16:05:50 +08:00
|
|
|
<!-- 文件管理与共享
|
2020-03-10 23:22:19 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
2020-05-29 16:05:50 +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
|
|
|
|
2020-05-29 16:05:50 +08:00
|
|
|
<!-- 文件在线预览
|
2020-03-10 23:22:19 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
2020-05-29 16:05:50 +08:00
|
|
|
<artifactId>jeesite-module-filepreview</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
|
|
|
|
2018-10-15 20:39:09 +08:00
|
|
|
<!-- Spring Boot -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-01-10 23:39:55 +08:00
|
|
|
<!-- 自定义jar依赖包演示
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>test-core</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
<scope>system</scope>
|
|
|
|
|
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/test-core-1.0.jar</systemPath>
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
2018-07-02 23:00:37 +08:00
|
|
|
<finalName>${finalName}</finalName>
|
2018-01-10 23:39:55 +08:00
|
|
|
<outputDirectory>${project.basedir}/src/main/webapp/WEB-INF/classes/</outputDirectory>
|
|
|
|
|
<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>
|
2018-02-05 20:31:34 +08:00
|
|
|
<!-- <plugin>
|
2018-01-10 23:39:55 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2018-02-05 20:31:34 +08:00
|
|
|
</plugin> -->
|
2018-01-10 23:39:55 +08:00
|
|
|
|
2018-07-02 23:00:37 +08:00
|
|
|
<!-- 打包插件, war包名称不带版本号 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
<configuration>
|
2018-12-15 19:54:19 +08:00
|
|
|
<!-- <packagingExcludes></packagingExcludes>
|
|
|
|
|
<warSourceExcludes></warSourceExcludes> -->
|
2018-07-02 23:00:37 +08:00
|
|
|
<webappDirectory>${project.build.directory}/${project.artifactId}</webappDirectory>
|
|
|
|
|
<warName>${finalName}</warName>
|
|
|
|
|
<archive>
|
|
|
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
|
|
|
</archive>
|
|
|
|
|
</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>
|
|
|
|
|
<downloadSources>${eclipse-plugin-download-sources}</downloadSources>
|
|
|
|
|
<downloadJavadocs>${eclipse-plugin-download-javadocs}</downloadJavadocs>
|
2018-07-02 23:00:37 +08:00
|
|
|
<wtpContextName>${finalName}</wtpContextName>
|
2018-01-10 23:39:55 +08:00
|
|
|
<wtpversion>2.0</wtpversion>
|
|
|
|
|
<jeeversion>6.0</jeeversion>
|
|
|
|
|
</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>
|
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>
|
2019-12-26 11:18:24 +08:00
|
|
|
<url>http://maven.jeesite.net/repository/maven-public</url>
|
|
|
|
|
</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>
|
2018-01-10 23:39:55 +08:00
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
</project>
|