|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>cn.wode490390.nukkit</groupId> |
| 5 | + <artifactId>theend</artifactId> |
| 6 | + <version>1.0.0</version> |
| 7 | + <name>TheEnd</name> |
| 8 | + <description>The end plugin for Nukkit</description> |
| 9 | + <inceptionYear>2018</inceptionYear> |
| 10 | + <url>http://wode490390.cn/</url> |
| 11 | + <packaging>jar</packaging> |
| 12 | + <licenses> |
| 13 | + <license> |
| 14 | + <name>GNU General Public License, Version 3.0</name> |
| 15 | + <url>http://www.gnu.org/licenses/gpl.html</url> |
| 16 | + </license> |
| 17 | + </licenses> |
| 18 | + <properties> |
| 19 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 20 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 21 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 22 | + </properties> |
| 23 | + <repositories> |
| 24 | + <repository> |
| 25 | + <id>nukkitx</id> |
| 26 | + <url>http://repo.nukkitx.com/main/</url> |
| 27 | + </repository> |
| 28 | + </repositories> |
| 29 | + <dependencies> |
| 30 | + <dependency> |
| 31 | + <groupId>cn.nukkit</groupId> |
| 32 | + <artifactId>nukkit</artifactId> |
| 33 | + <version>1.0-SNAPSHOT</version> |
| 34 | + <scope>provided</scope> |
| 35 | + </dependency> |
| 36 | + </dependencies> |
| 37 | + <build> |
| 38 | + <finalName>wodeTheEnd-${project.version}</finalName> |
| 39 | + <defaultGoal>clean package</defaultGoal> |
| 40 | + <resources> |
| 41 | + <resource> |
| 42 | + <targetPath>.</targetPath> |
| 43 | + <filtering>true</filtering> |
| 44 | + <directory>${basedir}/src/main/resources</directory> |
| 45 | + <includes> |
| 46 | + <include>*.yml</include> |
| 47 | + </includes> |
| 48 | + </resource> |
| 49 | + </resources> |
| 50 | + </build> |
| 51 | +</project> |
0 commit comments