Skip to content

Commit c07b71c

Browse files
committed
re-introduce java 8 support due to high demand
1 parent 4b13ac2 commit c07b71c

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ plugins {
2828
// --
2929
// Variables
3030
// --
31-
version = '2.5.2'
31+
version = '2.5.3'
3232
group = 'net.tcpshield.tcpshield'
3333
archivesBaseName = 'TCPShield'
3434

@@ -63,7 +63,8 @@ sourceSets {
6363
}
6464

6565
compileJava {
66-
sourceCompatibility = targetCompatibility = '11' // Will switch to Java 16 in a future release
66+
sourceCompatibility = "8"
67+
targetCompatibility = "8"
6768
options.encoding = 'UTF-8'
6869
}
6970

src/main/resources/bungee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: TCPShield
2-
version: 2.5.2
2+
version: 2.5.3
33
main: net.tcpshield.tcpshield.bungee.TCPShieldBungee
44
author: https://tcpshield.com

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: TCPShield
2-
version: 2.5.2
2+
version: 2.5.3
33
main: net.tcpshield.tcpshield.bukkit.TCPShieldBukkit
44
softdepend:
55
- ProtocolLib
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"id":"tcpshield","name":"TCPShield","version":"2.5.2","description":"TCPShield IP parsing capabilities for Velocity","authors":["TCPShield"],"dependencies":[],"main":"net.tcpshield.tcpshield.velocity.TCPShieldVelocity"}
1+
{"id":"tcpshield","name":"TCPShield","version":"2.5.3","description":"TCPShield IP parsing capabilities for Velocity","authors":["TCPShield"],"dependencies":[],"main":"net.tcpshield.tcpshield.velocity.TCPShieldVelocity"}

0 commit comments

Comments
 (0)