Update to Java 16 + replace javatuples usage with records

This commit is contained in:
2021-06-18 02:41:48 +02:00
parent 29d036a13f
commit 918ab59b69
15 changed files with 89 additions and 90 deletions

14
pom.xml
View File

@@ -37,8 +37,8 @@
<properties>
<build.number>unknown</build.number>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bungeecord.version>1.16-R0.4-SNAPSHOT</bungeecord.version>
@@ -54,11 +54,11 @@
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.7.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>