12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?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>
- <packaging>pom</packaging>
- <groupId>cn.keking</groupId>
- <artifactId>kkFileView-parent</artifactId>
- <version>4.1.0-SNAPSHOT</version>
- <properties>
- <java.version>1.8</java.version>
- <spring.boot.version>2.4.2</spring.boot.version>
- <maven.compiler.source>${java.version}</maven.compiler.source>
- <maven.compiler.target>${java.version}</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- </properties>
- <modules>
- <module>office-plugin</module>
- <module>server</module>
- </modules>
- <name>kkFileView-parent</name>
- <description>专注文件在线预览服务</description>
- <url>https://github.com/kekingcn/kkFileView</url>
- <licenses>
- <license>
- <name>Apache License, Version 2.0</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0</url>
- </license>
- </licenses>
- <scm>
- <url>https://github.com/kekingcn/kkFileView</url>
- <connection>scm:git:git://github.com/kekingcn/kkFileView.git</connection>
- <developerConnection>scm:git:ssh://git@github.com/kekingcn/kkFileView.git</developerConnection>
- </scm>
- <developers>
- <developer>
- <id>klboke</id>
- <name>kl</name>
- <email>g632104866@gmail.com</email>
- <url>http://www.kailing.pub</url>
- </developer>
- <developer>
- <id>gitchenjh</id>
- <name>chenjinghua</name>
- <email>842761733@qq.com</email>
- </developer>
- </developers>
- <issueManagement>
- <system>github</system>
- <url>https://github.com/kekingcn/kkFileView/issues</url>
- </issueManagement>
- </project>
|