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>
|
2023-01-04 09:49:05 +00:00
|
|
|
|
<packaging>jar</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>
|
2023-03-12 15:19:40 +08:00
|
|
|
|
<version>1.1.4</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>
|
|
|
|
|
|
<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>
|
2023-04-10 20:03:47 +08:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
|
<!-- <groupId>com.oracle</groupId>-->
|
|
|
|
|
|
<!-- <artifactId>ojdbc6</artifactId>-->
|
|
|
|
|
|
<!-- </dependency>-->
|
2023-02-02 14:36:34 +08:00
|
|
|
|
<!--达梦数据库驱动-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.dameng</groupId>
|
|
|
|
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
|
|
|
|
|
</dependency>
|
2018-11-27 22:19:16 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
2023-02-04 17:15:02 +08:00
|
|
|
|
<finalName>zyplayer-doc</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>
|
2023-01-05 20:13:16 +08:00
|
|
|
|
<include>sql/**</include>
|
|
|
|
|
|
<include>*.yml</include>
|
2021-11-17 22:31:46 +08:00
|
|
|
|
<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>
|
2022-12-22 18:22:32 +08:00
|
|
|
|
<version>2.1.6.RELEASE</version>
|
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>
|