mirror of
https://github.com/CarmJos/MineConfiguration.git
synced 2026-06-04 12:59:45 +08:00
8828421632
Bumps [com.github.cryptomorin:XSeries](https://github.com/CryptoMorin/XSeries) from 13.5.1 to 13.6.0. - [Release notes](https://github.com/CryptoMorin/XSeries/releases) - [Commits](https://github.com/CryptoMorin/XSeries/compare/v13.5.1...v13.6.0) --- updated-dependencies: - dependency-name: com.github.cryptomorin:XSeries dependency-version: 13.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
81 lines
2.7 KiB
XML
81 lines
2.7 KiB
XML
<?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>
|
|
<artifactId>mineconfiguration-parent</artifactId>
|
|
<groupId>cc.carm.lib</groupId>
|
|
<version>3.1.4</version>
|
|
<relativePath>../../pom.xml</relativePath>
|
|
</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>
|
|
</properties>
|
|
<artifactId>mineconfiguration-bukkit</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>MineConfiguration-Bukkit</name>
|
|
<description>EasyConfiguration for Bukkit.</description>
|
|
|
|
<dependencies>
|
|
|
|
<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>13.6.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<!--suppress VulnerableLibrariesLocal -->
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.13.2-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
<version>1.21-R0.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!--PlaceholderAPI for general placeholder's support-->
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.11.6</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |