1
mirror of https://github.com/CarmJos/MineConfiguration.git synced 2024-09-20 04:15:49 +00:00
MineConfiguration/platform/bukkit/pom.xml

74 lines
2.5 KiB
XML
Raw Normal View History

2022-04-22 05:45:48 +00: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">
<parent>
2022-04-23 15:20:50 +00:00
<artifactId>mineconfiguration-parent</artifactId>
2022-04-22 05:45:48 +00:00
<groupId>cc.carm.lib</groupId>
<version>2.8.7</version>
<relativePath>../../pom.xml</relativePath>
2022-04-22 05:45:48 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<properties>
<maven.compiler.source>${project.jdk.version}</maven.compiler.source>
<maven.compiler.target>${project.jdk.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
2022-04-22 05:45:48 +00:00
</properties>
<artifactId>mineconfiguration-bukkit</artifactId>
<packaging>jar</packaging>
2022-04-22 05:45:48 +00:00
<name>MineConfiguration-Bukkit</name>
<description>轻松(做)配置适用于Bukkit系服务端的版本。</description>
2022-04-22 05:45:48 +00:00
<dependencies>
2022-04-23 15:20:50 +00:00
<dependency>
<groupId>${project.parent.groupId}</groupId>
<artifactId>mineconfiguration-common</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>cc.carm.lib</groupId>
<artifactId>yamlcommentwriter</artifactId>
<version>${deps.yamlcommentwriter.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.cryptomorin</groupId>
<artifactId>XSeries</artifactId>
<version>9.7.0</version>
<scope>compile</scope>
</dependency>
<!--suppress VulnerableLibrariesLocal -->
2022-04-23 15:20:50 +00:00
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.13.2-R0.1-SNAPSHOT</version>
2022-04-22 05:45:48 +00:00
<scope>provided</scope>
</dependency>
<!--PlaceholderAPI for general placeholder's support-->
2022-04-28 20:27:38 +00:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.11.4</version>
2022-04-28 20:27:38 +00:00
<scope>provided</scope>
</dependency>
2022-04-22 05:45:48 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
2022-04-22 05:45:48 +00:00
</project>