mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-12-01 16:33:24 +01:00
31 lines
647 B
Groovy
31 lines
647 B
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
url 'https://mvn.lumine.io/repository/maven-public/'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.spigotmc:spigot-api:1.15.2-R0.1-SNAPSHOT'
|
|
compileOnly project(':plugin')
|
|
compileOnly 'net.Indyuce:MMOCore:1.4.11'
|
|
compileOnly 'net.Indyuce:MMOItems:6.4'
|
|
compileOnly 'net.Indyuce:MMOLib:1.5'
|
|
}
|
|
|
|
jar{
|
|
archiveFileName = project.name + " Extension" + ".jar"
|
|
}
|
|
|
|
description = 'MMO'
|
|
|
|
tasks.withType(Jar) {
|
|
destinationDirectory = file("$rootDir/bin/")
|
|
}
|
|
|
|
configurations.all {
|
|
exclude group: 'com.mojang', module: 'authlib'
|
|
} |