2015-07-20 20:02:11 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-03-02 01:46:32 +01:00
|
|
|
<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>
|
2018-01-30 18:31:22 +01:00
|
|
|
|
2021-03-14 15:40:10 +01:00
|
|
|
<groupId>com.viaversion</groupId>
|
2014-03-02 01:46:32 +01:00
|
|
|
<artifactId>opennbt</artifactId>
|
2023-10-07 14:13:05 +02:00
|
|
|
<version>2.1.3</version>
|
2014-03-02 01:46:32 +01:00
|
|
|
<packaging>jar</packaging>
|
2012-03-21 04:27:22 +01:00
|
|
|
|
2014-03-02 01:46:32 +01:00
|
|
|
<name>OpenNBT</name>
|
|
|
|
<description>A library for reading and writing NBT files, written in Java.</description>
|
2023-03-03 13:51:13 +01:00
|
|
|
<url>https://github.com/ViaVersion/OpenNBT</url>
|
2012-03-12 05:29:54 +01:00
|
|
|
|
2021-03-14 22:28:30 +01:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>viaversion</id>
|
|
|
|
<url>https://repo.viaversion.com</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
2015-07-20 20:02:11 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-03-14 15:40:10 +01:00
|
|
|
<jdk.version>1.8</jdk.version>
|
2022-05-16 13:17:53 +02:00
|
|
|
<maven.compiler.target>${jdk.version}</maven.compiler.target>
|
|
|
|
<maven.compiler.source>${jdk.version}</maven.compiler.source>
|
2015-07-20 20:02:11 +02:00
|
|
|
</properties>
|
|
|
|
|
2014-03-02 01:46:32 +01:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT</name>
|
2021-03-14 15:40:10 +01:00
|
|
|
<url>https://www.opensource.org/licenses/mit-license.html</url>
|
2014-03-02 01:46:32 +01:00
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
2012-03-12 05:29:54 +01:00
|
|
|
|
2015-07-20 20:02:11 +02:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>steveice10</id>
|
|
|
|
<name>Steveice10</name>
|
|
|
|
<email>Steveice10@gmail.com</email>
|
|
|
|
</developer>
|
2023-03-03 13:51:13 +01:00
|
|
|
<developer>
|
|
|
|
<id>kennytv</id>
|
|
|
|
<name>Nassim Jahnke</name>
|
|
|
|
</developer>
|
2015-07-20 20:02:11 +02:00
|
|
|
</developers>
|
2012-03-12 05:29:54 +01:00
|
|
|
|
2018-01-30 18:31:22 +01:00
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
2023-03-03 13:51:13 +01:00
|
|
|
<url>https://github.com/ViaVersion/OpenNBT/issues</url>
|
2018-01-30 18:31:22 +01:00
|
|
|
</issueManagement>
|
|
|
|
|
2021-03-14 15:40:10 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.unimi.dsi</groupId>
|
|
|
|
<artifactId>fastutil</artifactId>
|
|
|
|
<version>8.5.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2023-03-03 13:51:13 +01:00
|
|
|
<version>24.0.0</version>
|
2021-03-14 15:40:10 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2014-03-02 01:46:32 +01:00
|
|
|
<build>
|
|
|
|
<defaultGoal>clean install</defaultGoal>
|
|
|
|
<plugins>
|
2016-12-16 01:52:22 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2023-10-07 14:13:05 +02:00
|
|
|
<version>3.6.0</version>
|
2016-12-16 01:52:22 +01:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
2018-01-30 18:31:22 +01:00
|
|
|
<goal>aggregate</goal>
|
2016-12-16 01:52:22 +01:00
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2018-01-30 18:31:22 +01:00
|
|
|
<configuration>
|
|
|
|
<show>public</show>
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
</configuration>
|
2016-12-16 01:52:22 +01:00
|
|
|
</plugin>
|
2015-07-20 20:02:11 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-01-30 18:31:22 +01:00
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2023-10-07 14:13:05 +02:00
|
|
|
<version>3.3.0</version>
|
2015-07-20 20:02:11 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2018-01-30 18:31:22 +01:00
|
|
|
<id>attach-sources</id>
|
2015-07-20 20:02:11 +02:00
|
|
|
<goals>
|
2018-01-30 18:31:22 +01:00
|
|
|
<goal>jar</goal>
|
2015-07-20 20:02:11 +02:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2018-01-30 18:31:22 +01:00
|
|
|
</plugin>
|
2014-03-02 01:46:32 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-03-12 05:29:54 +01:00
|
|
|
</project>
|