71 lines
2.9 KiB
Groovy
71 lines
2.9 KiB
Groovy
group 'com.willfp'
|
|
version rootProject.version
|
|
|
|
dependencies {
|
|
compileOnly project(":eco-core:core-proxy")
|
|
compileOnly project(":eco-core:core-backend")
|
|
|
|
// Libraries
|
|
implementation 'com.github.Redempt:Crunch:1.1.2'
|
|
implementation 'mysql:mysql-connector-java:8.0.25'
|
|
implementation 'org.jetbrains.exposed:exposed-core:0.37.3'
|
|
implementation 'org.jetbrains.exposed:exposed-dao:0.37.3'
|
|
implementation 'org.jetbrains.exposed:exposed-jdbc:0.37.3'
|
|
implementation 'com.zaxxer:HikariCP:5.0.0'
|
|
implementation 'net.kyori:adventure-platform-bukkit:4.1.0'
|
|
implementation 'org.javassist:javassist:3.28.0-GA'
|
|
|
|
// Included in spigot jar
|
|
compileOnly 'com.google.code.gson:gson:2.8.8'
|
|
compileOnly 'org.spigotmc:spigot-api:1.17.1-R0.1-SNAPSHOT'
|
|
|
|
// Plugin dependencies
|
|
compileOnly 'com.comphenix.protocol:ProtocolLib:4.6.1-SNAPSHOT'
|
|
compileOnly 'com.sk89q.worldguard:worldguard-bukkit:7.0.7-SNAPSHOT'
|
|
compileOnly 'com.github.TechFortress:GriefPrevention:16.17.1'
|
|
compileOnly 'com.massivecraft:Factions:1.6.9.5-U0.5.10'
|
|
compileOnly 'com.github.cryptomorin:kingdoms:1.12.3'
|
|
compileOnly('com.github.TownyAdvanced:Towny:0.97.2.6') {
|
|
exclude group: 'com.zaxxer', module: 'HikariCP'
|
|
}
|
|
compileOnly 'com.github.angeschossen:LandsAPI:5.15.2'
|
|
compileOnly 'fr.neatmonster:nocheatplus:3.16.1-SNAPSHOT'
|
|
compileOnly 'com.github.jiangdashao:matrix-api-repo:317d4635fd'
|
|
compileOnly 'com.gmail.nossr50.mcMMO:mcMMO:2.1.202'
|
|
compileOnly 'me.clip:placeholderapi:2.10.10'
|
|
compileOnly 'com.github.oraxen:oraxen:bd81ace154'
|
|
compileOnly 'com.github.brcdev-minecraft:shopgui-api:2.2.0'
|
|
compileOnly 'com.github.LoneDev6:API-ItemsAdder:2.4.7'
|
|
compileOnly 'com.arcaniax:HeadDatabase-API:1.3.0'
|
|
compileOnly 'com.gmail.filoghost.holographicdisplays:holographicdisplays-api:2.4.0'
|
|
compileOnly 'com.github.EssentialsX:Essentials:2.18.2'
|
|
compileOnly 'com.bgsoftware:SuperiorSkyblockAPI:1.8.3'
|
|
compileOnly 'com.github.MilkBowl:VaultAPI:1.7'
|
|
compileOnly 'com.github.WhipDevelopment:CrashClaim:f9cd7d92eb'
|
|
compileOnly 'com.wolfyscript.wolfyutilities:wolfyutilities:3.16.0.0'
|
|
compileOnly 'com.github.decentsoftware-eu:decentholograms:2.1.2'
|
|
compileOnly 'com.github.Gypopo:EconomyShopGUI-API:1.1.0'
|
|
|
|
// MythicMobs
|
|
compileOnly 'io.lumine:Mythic:5.0.1'
|
|
compileOnly 'io.lumine:LumineUtils:1.16.1-SNAPSHOT'
|
|
|
|
// CombatLogX V10 + NewbieHelper Expansion
|
|
compileOnly 'com.SirBlobman.combatlogx:CombatLogX-API:10.0.0.0-SNAPSHOT'
|
|
|
|
// CombatLogX V11 + NewbieHelper Expansion
|
|
compileOnly 'com.github.sirblobman.combatlogx:api:11.0.0.0-SNAPSHOT'
|
|
|
|
// LibsDisguises
|
|
compileOnly 'LibsDisguises:LibsDisguises:10.0.26'
|
|
|
|
// All other libs
|
|
compileOnly fileTree(dir: '../../lib', include: ['*.jar'])
|
|
}
|
|
|
|
processResources {
|
|
filesNotMatching(["**/*.png", "**/models/**", "**/textures/**"]) {
|
|
expand projectVersion: project.version
|
|
}
|
|
}
|