134 lines
3.6 KiB
XML
134 lines
3.6 KiB
XML
<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-wiki</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>zyplayer-doc-wiki</name>
|
|
<description>wiki文档工具</description>
|
|
<url>https://gitee.com/zyplayer/zyplayer-doc/zyplayer-doc-wiki</url>
|
|
<developers>
|
|
<developer>
|
|
<id>zyplayer</id>
|
|
<name>暮光:城中城</name>
|
|
<email>806783409@qq.com</email>
|
|
<roles>
|
|
<role>Java Development Engineer</role>
|
|
</roles>
|
|
<timezone>2018-05-22 16:06:06</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<parent>
|
|
<groupId>com.zyplayer</groupId>
|
|
<artifactId>zyplayer-doc</artifactId>
|
|
<version>1.1.5</version>
|
|
</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>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zyplayer</groupId>
|
|
<artifactId>zyplayer-doc-data</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zyplayer</groupId>
|
|
<artifactId>zyplayer-doc-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>4.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>4.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
<version>4.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
<version>4.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>ooxml-schemas</artifactId>
|
|
<version>1.4</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.atlassian.commonmark</groupId>
|
|
<artifactId>commonmark</artifactId>
|
|
<version>0.10.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<connection>scm:git@git.oschina.net:zyplayer/zyplayer-doc.git</connection>
|
|
<developerConnection>scm:git@git.oschina.net:zyplayer/zyplayer-doc.git</developerConnection>
|
|
<url>git@git.oschina.net:zyplayer/zyplayer-doc.git</url>
|
|
</scm>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>snapshots</id>
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>snapshots</id>
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources/dist</directory>
|
|
<targetPath>META-INF/resources/</targetPath>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/*.java</exclude>
|
|
</excludes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/webapp</directory>
|
|
<includes>
|
|
<include>**/*</include>
|
|
</includes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|