Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ Looking for up-to-date builds of the plugin? Check out our [Jenkins](https://ci.
## Why is it so good?
- 100% Packet Based - Nothing is ran on the main thread
- Performance & stability oriented code
- Support for all versions from 1.8 to 1.21.8
- Support for all versions from 1.8 to 1.21.11
- Support for multiple different storage options
- Intuitive command system

### Requirements, Extensions & Supported Software
Requirements:
- Java 8+
- Minecraft 1.8 - 1.21.8
- Minecraft 1.8 - 1.21.11

Supported Softwares:
- Spigot ([Website](https://www.spigotmc.org/))
Expand Down
12 changes: 9 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ subprojects {
}

dependencies {
compileOnly "org.jetbrains:annotations:26.0.1"
compileOnly "org.jetbrains:annotations:26.1.0"
compileOnly "org.spigotmc:spigot-api:1.8.8-R0.1-SNAPSHOT"
}

Expand All @@ -25,13 +25,19 @@ subprojects {
url "https://libraries.minecraft.net"
}
maven {
url "https://repo.papermc.io/repository/maven-public/"
name = "papermc"
url = uri("https://repo.papermc.io/repository/maven-public/")
}
maven {
url "https://repo.extendedclip.com/content/repositories/placeholderapi/"
name "helpchatRepoReleases"
url "https://repo.helpch.at/releases"
}
maven {
url "https://repo.pyr.lol/releases"
}
maven {
name = 'central-snapshots'
url = 'https://central.sonatype.com/repository/maven-snapshots/'
}
}
}
6 changes: 4 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
zipStorePath=wrapper/dists
18 changes: 9 additions & 9 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id "java"
id "com.github.johnrengelman.shadow" version "8.1.1"
id "xyz.jpenilla.run-paper" version "2.2.0"
id "com.gradleup.shadow" version "9.4.1"
id "xyz.jpenilla.run-paper" version "3.0.2"
}

runServer {
Expand All @@ -16,16 +16,16 @@ processResources {
}

dependencies {
compileOnly "me.clip:placeholderapi:2.11.7" // Placeholder support
implementation "com.google.code.gson:gson:2.10.1" // JSON parsing
implementation "org.bstats:bstats-bukkit:3.0.2" // Plugin stats
implementation "com.github.retrooper:packetevents-spigot:2.11.1" // Packets
compileOnly "me.clip:placeholderapi:2.12.2" // Placeholder support
implementation "com.google.code.gson:gson:2.13.2" // JSON parsing
implementation "org.bstats:bstats-bukkit:3.2.1" // Plugin stats
implementation "com.github.retrooper:packetevents-spigot:2.12.0" // Packets
implementation "space.arim.dazzleconf:dazzleconf-ext-snakeyaml:1.2.1" // Configs
implementation "lol.pyr:director-adventure:2.1.2" // Commands

// Fancy text library
implementation "net.kyori:adventure-platform-bukkit:4.4.0"
implementation "net.kyori:adventure-text-minimessage:4.25.0"
implementation "net.kyori:adventure-platform-bukkit:4.4.1"
implementation "net.kyori:adventure-text-minimessage:4.26.1" //TODO: Update to 5.x

implementation project(":api")
}
Expand All @@ -37,7 +37,7 @@ ext {
}

shadowJar {
archivesBaseName = "ZNPCsPlus"
archiveBaseName.set("ZNPCsPlus")
archiveClassifier.set ""

manifest {
Expand Down