2018-11-27 22:19:16 +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>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>zyplayer-doc-manage</artifactId>
|
2021-12-22 23:00:10 +08:00
|
|
|
|
<packaging>war</packaging>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
|
|
|
|
|
|
<name>zyplayer-doc-manage</name>
|
2022-12-07 20:21:18 +08:00
|
|
|
|
<description>定位为所有文档的管理项目,API接口文档、数据库文档、、、、等</description>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
|
|
|
|
|
|
<parent>
|
2021-11-17 22:31:46 +08:00
|
|
|
|
<groupId>com.zyplayer</groupId>
|
|
|
|
|
|
<artifactId>zyplayer-doc</artifactId>
|
2022-11-01 22:50:57 +08:00
|
|
|
|
<version>1.1.1</version>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2021-11-17 22:31:46 +08:00
|
|
|
|
<artifactId>spring-boot</artifactId>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2021-11-17 22:31:46 +08:00
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2021-11-17 22:31:46 +08:00
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
</dependency>
|
2021-08-02 21:18:58 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-data-ldap</artifactId>
|
|
|
|
|
|
</dependency>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.zyplayer</groupId>
|
2018-12-26 22:34:20 +08:00
|
|
|
|
<artifactId>zyplayer-doc-core</artifactId>
|
2018-12-08 14:59:26 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.zyplayer</groupId>
|
2018-12-26 22:34:20 +08:00
|
|
|
|
<artifactId>zyplayer-doc-db</artifactId>
|
|
|
|
|
|
</dependency>
|
2019-02-26 23:04:24 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.zyplayer</groupId>
|
|
|
|
|
|
<artifactId>zyplayer-doc-wiki</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.zyplayer</groupId>
|
|
|
|
|
|
<artifactId>zyplayer-doc-data</artifactId>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
</dependency>
|
2021-10-17 19:50:22 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.zyplayer</groupId>
|
2021-11-26 23:51:14 +08:00
|
|
|
|
<artifactId>zyplayer-doc-api</artifactId>
|
2018-12-16 22:20:30 +08:00
|
|
|
|
</dependency>
|
2019-09-28 15:25:52 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
|
</dependency>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
2019-06-14 22:24:45 +08:00
|
|
|
|
<finalName>zyplayer-doc-manage</finalName>
|
2019-07-18 23:21:07 +08:00
|
|
|
|
<resources>
|
|
|
|
|
|
<resource>
|
2021-07-10 19:15:49 +08:00
|
|
|
|
<directory>src/main/resources/dist</directory>
|
2019-07-18 23:21:07 +08:00
|
|
|
|
<targetPath>META-INF/resources/</targetPath>
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
<resource>
|
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
|
<includes>
|
2021-11-17 22:31:46 +08:00
|
|
|
|
<include>application.yml</include>
|
|
|
|
|
|
<include>logback.xml</include>
|
2019-07-18 23:21:07 +08:00
|
|
|
|
</includes>
|
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
|
</resource>
|
|
|
|
|
|
</resources>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2021-11-17 22:31:46 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
|
<mainClass>com.zyplayer.doc.manage.Application</mainClass>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
|
</configuration>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
2019-02-02 21:17:44 +08:00
|
|
|
|
</project>
|