Skip to content

Commit

Permalink
re-introduce java 8 support due to high demand
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanKeir committed Aug 2, 2021
1 parent 4b13ac2 commit c07b71c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ plugins {
// --
// Variables
// --
version = '2.5.2'
version = '2.5.3'
group = 'net.tcpshield.tcpshield'
archivesBaseName = 'TCPShield'

Expand Down Expand Up @@ -63,7 +63,8 @@ sourceSets {
}

compileJava {
sourceCompatibility = targetCompatibility = '11' // Will switch to Java 16 in a future release
sourceCompatibility = "8"
targetCompatibility = "8"
options.encoding = 'UTF-8'
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/bungee.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: TCPShield
version: 2.5.2
version: 2.5.3
main: net.tcpshield.tcpshield.bungee.TCPShieldBungee
author: https://tcpshield.com
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: TCPShield
version: 2.5.2
version: 2.5.3
main: net.tcpshield.tcpshield.bukkit.TCPShieldBukkit
softdepend:
- ProtocolLib
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/velocity-plugin.json
Original file line number Diff line number Diff line change
@@ -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"}
{"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 comments on commit c07b71c

Please sign in to comment.