38 lines
1.6 KiB
Groovy
38 lines
1.6 KiB
Groovy
group 'com.willfp'
|
|
version rootProject.version
|
|
|
|
dependencies {
|
|
implementation 'org.apache.maven:maven-artifact:3.0.3'
|
|
implementation 'org.bstats:bstats-bukkit:1.7'
|
|
compileOnly 'com.google.code.gson:gson:2.8.7'
|
|
compileOnly 'org.spigotmc:spigot-api:1.17-R0.1-SNAPSHOT'
|
|
compileOnly project(":eco-core:core-proxy")
|
|
compileOnly project(":eco-core:core-backend")
|
|
compileOnly 'com.comphenix.protocol:ProtocolLib:4.6.0-SNAPSHOT'
|
|
compileOnly 'com.sk89q.worldguard:worldguard-bukkit:7.0.4-SNAPSHOT'
|
|
compileOnly 'com.github.TechFortress:GriefPrevention:16.14.0'
|
|
compileOnly 'com.massivecraft:Factions:1.6.9.5-U0.5.10'
|
|
compileOnly 'com.github.cryptomorin:kingdoms:1.10.14'
|
|
compileOnly 'com.github.TownyAdvanced:Towny:0.96.2.0'
|
|
compileOnly 'com.github.angeschossen:LandsAPI:4.7.3'
|
|
compileOnly 'fr.neatmonster:nocheatplus:3.16.1-SNAPSHOT'
|
|
compileOnly 'com.github.jiangdashao:matrix-api-repo:317d4635fd'
|
|
compileOnly 'com.gmail.nossr50.mcMMO:mcMMO:2.1.157'
|
|
|
|
// CombatLogX V10 + NewbieHelper Expansion
|
|
compileOnly 'com.SirBlobman.combatlogx:CombatLogX-API:10.0.0.0-SNAPSHOT'
|
|
compileOnly 'com.SirBlobman.combatlogx.expansions:NewbieHelper:10.0.0.0-SNAPSHOT'
|
|
|
|
// CombatLogX V11 + NewbieHelper Expansion
|
|
compileOnly 'com.github.sirblobman.combatlogx:api:11.0.0.0-SNAPSHOT'
|
|
compileOnly 'com.github.sirblobman.combatlogx.expansion:newbie-helper:11.0.0.0-SNAPSHOT'
|
|
|
|
compileOnly fileTree(dir: '../../lib', include: ['*.jar'])
|
|
}
|
|
|
|
processResources {
|
|
filesNotMatching(["**/*.png", "**/models/**", "**/textures/**"]) {
|
|
expand projectVersion: project.version
|
|
}
|
|
}
|