mirror of
https://github.com/PlayPro/CoreProtect.git
synced 2025-01-04 18:57:47 +01:00
CoreProtect v22.0 release
This commit is contained in:
parent
a46deeb6ba
commit
58f4a76d75
@ -11,14 +11,14 @@ CoreProtect
|
|||||||
|
|
||||||
CoreProtect is a blazing fast data logging and anti-griefing tool for Minecraft servers.
|
CoreProtect is a blazing fast data logging and anti-griefing tool for Minecraft servers.
|
||||||
|
|
||||||
For a detailed description of the plugin, please visit [modrinth.com/plugin/coreprotect](https://modrinth.com/plugin/coreprotect).
|
For a detailed description of the plugin, please visit [coreprotect.net](https://coreprotect.net).
|
||||||
|
|
||||||
| Quick Links | |
|
| Quick Links | |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
| CoreProtect Discord: | [discord.gg/b4DZ4jy](https://discord.gg/b4DZ4jy) |
|
| CoreProtect Discord: | [discord.gg/b4DZ4jy](https://discord.gg/b4DZ4jy) |
|
||||||
| CoreProtect Patreon: | [patreon.com/coreprotect](https://www.patreon.com/coreprotect) |
|
| CoreProtect Patreon: | [patreon.com/coreprotect](https://www.patreon.com/coreprotect) |
|
||||||
| CoreProtect Documentation: | [docs.coreprotect.net](https://docs.coreprotect.net) |
|
| CoreProtect Documentation: | [docs.coreprotect.net](https://docs.coreprotect.net) |
|
||||||
| Downloads for MC 1.14 - 1.19: | [modrinth.com/plugin/coreprotect](https://modrinth.com/plugin/coreprotect) |
|
| Downloads for MC 1.14 - 1.20: | [coreprotect.net/latest](https://coreprotect.net/latest/) |
|
||||||
| Downloads for MC 1.8 - 1.12: | [coreprotect.net/legacy](https://coreprotect.net/legacy/) |
|
| Downloads for MC 1.8 - 1.12: | [coreprotect.net/legacy](https://coreprotect.net/legacy/) |
|
||||||
|
|
||||||
bStats
|
bStats
|
||||||
@ -41,7 +41,7 @@ Maven
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.coreprotect</groupId>
|
<groupId>net.coreprotect</groupId>
|
||||||
<artifactId>coreprotect</artifactId>
|
<artifactId>coreprotect</artifactId>
|
||||||
<version>21.3</version>
|
<version>22.0</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
@ -7,7 +7,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = 'net.coreprotect'
|
group = 'net.coreprotect'
|
||||||
String projectVersion = '21.3'
|
String projectVersion = '22.0'
|
||||||
String projectBranch = ''
|
String projectBranch = ''
|
||||||
version = projectVersion // `version` might be modified, we don't always want that (e.g. plugin.yml)
|
version = projectVersion // `version` might be modified, we don't always want that (e.g. plugin.yml)
|
||||||
description = 'Provides block protection for your server.'
|
description = 'Provides block protection for your server.'
|
||||||
@ -34,9 +34,9 @@ dependencies {
|
|||||||
compileOnly('com.sk89q.worldedit:worldedit-bukkit:7.0.0-SNAPSHOT') {
|
compileOnly('com.sk89q.worldedit:worldedit-bukkit:7.0.0-SNAPSHOT') {
|
||||||
exclude group: 'org.bukkit'
|
exclude group: 'org.bukkit'
|
||||||
}
|
}
|
||||||
compileOnly 'io.papermc.paper:paper-api:1.19-R0.1-SNAPSHOT'
|
compileOnly 'dev.folia:folia-api:1.20.1-R0.1-SNAPSHOT'
|
||||||
implementation 'org.bstats:bstats-bukkit-lite:1.8'
|
implementation 'org.bstats:bstats-bukkit-lite:1.8'
|
||||||
implementation 'com.zaxxer:HikariCP:4.0.3'
|
implementation 'com.zaxxer:HikariCP:5.0.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
3
pom.xml
3
pom.xml
@ -2,7 +2,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>net.coreprotect</groupId>
|
<groupId>net.coreprotect</groupId>
|
||||||
<artifactId>CoreProtect</artifactId>
|
<artifactId>CoreProtect</artifactId>
|
||||||
<version>21.3</version>
|
<version>22.0</version>
|
||||||
<properties>
|
<properties>
|
||||||
<project.branch></project.branch>
|
<project.branch></project.branch>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
@ -95,6 +95,7 @@
|
|||||||
</repositories>
|
</repositories>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!--
|
<!--
|
||||||
|
paper-api: io.papermc.paper
|
||||||
paper-api (<= 1.16): com.destroystokyo.paper
|
paper-api (<= 1.16): com.destroystokyo.paper
|
||||||
spigot-api: org.spigotmc
|
spigot-api: org.spigotmc
|
||||||
bukkit: org.bukkit
|
bukkit: org.bukkit
|
||||||
|
Loading…
Reference in New Issue
Block a user