forked from EvenMoreFish/EvenMoreFish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
66 lines (55 loc) · 3.63 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
rootProject.name = "even-more-fish"
include(":even-more-fish-api")
include(":even-more-fish-addons-j8")
include(":even-more-fish-addons-j17")
include(":even-more-fish-plugin")
dependencyResolutionManagement {
versionCatalogs {
create("libs") {
library("spigot-api", "org.spigotmc:spigot-api:1.18.2-R0.1-SNAPSHOT")
library("vault-api", "com.github.MilkBowl:VaultAPI:1.7.1")
library("placeholder-api", "me.clip:placeholderapi:2.11.3")
library("authlib", "com.mojang:authlib:1.5.21")
library("bstats", "org.bstats:bstats-bukkit:3.0.2")
version("worldguard", "7.0.5")//We must use 7.0.5 until we upgrade to java 17
library("worldguard-core", "com.sk89q.worldguard","worldguard-core").versionRef("worldguard")
library("worldguard-bukkit", "com.sk89q.worldguard","worldguard-bukkit").versionRef("worldguard")
version("worldedit", "7.2.15")
library("worldedit-core", "com.sk89q.worldedit","worldedit-core").versionRef("worldedit")
library("worldedit-bukkit", "com.sk89q.worldedit","worldedit-bukkit").versionRef("worldedit")
version("redprotect", "7.7.3")
library("redprotect-core", "br.net.fabiozumbi12.RedProtect","RedProtect-Core").versionRef("redprotect")
library("redprotect-spigot", "br.net.fabiozumbi12.RedProtect","RedProtect-Spigot-1.13").versionRef("redprotect")
library("mcmmo", "com.gmail.nossr50.mcMMO:mcMMO:2.1.196")
library("aurelium-skills", "com.github.Archy-X:AureliumSkills:Beta1.2.8")
library("aura-skills", "dev.aurelium:auraskills-api-bukkit:2.0.7")
library("headdatabase-api", "com.arcaniax:HeadDatabase-API:1.3.1")
library("griefprevention", "com.github.TechFortress:GriefPrevention:16.17.1")//We must use 16.17.1 until we upgrade to java 17
library("caffeine", "com.github.ben-manes.caffeine:caffeine:2.9.3")//We must use 2.9.3 until we upgrade to java 17
library("itemsadder-api", "com.github.LoneDev6:API-ItemsAdder:3.6.1")
library("nbt-api", "de.tr7zw:item-nbt-api:2.12.3")
library("denizen-api", "com.denizenscript:denizen:1.3.0-SNAPSHOT") // Java 17 addon
library("oraxen", "com.github.oraxen:oraxen:1.171.0")
library("ecoitems-api", "com.willfp:EcoItems:5.6.1")
library("ecoitems-libreforge", "com.willfp:libreforge:4.21.1")
library("ecoitems-eco", "com.willfp:eco:6.65.1")
library("commons-lang3", "org.apache.commons:commons-lang3:3.13.0")
library("commons-codec", "commons-codec:commons-codec:1.16.0")
library("annotations", "org.jetbrains:annotations:24.0.1")
version("flyway", "9.19.4")
library("flyway-core", "org.flywaydb","flyway-core").versionRef("flyway")
library("flyway-mysql", "org.flywaydb","flyway-mysql").versionRef("flyway")
library("friendlyid", "com.devskiller.friendly-id:friendly-id:1.1.0")
library("hikaricp", "com.zaxxer:HikariCP:4.0.3") //We must use 4.0.3 until we upgrade to java 17
library("json-simple", "com.googlecode.json-simple:json-simple:1.1.1")
library("universalscheduler", "com.github.Anon8281:UniversalScheduler:0.1.6")
library("playerpoints", "org.black_ixx:playerpoints:3.2.6")
library("cmi-api", "CMI-API:CMI-API:9.7.0.1")
library("essx-api", "net.essentialsx:EssentialsX:2.20.1")
library("acf", "co.aikar:acf-paper:0.5.1-SNAPSHOT")
}
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
}