2020-11-29 10:32:18 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.github.johnrengelman.shadow' version '5.2.0'
|
|
|
|
}
|
|
|
|
|
2020-11-28 22:11:10 +01:00
|
|
|
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'
|
2020-11-29 11:51:54 +01:00
|
|
|
compileOnly 'net.Indyuce:MMOLib:1.4.1@jar'
|
2020-11-28 22:11:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
jar{
|
|
|
|
archiveFileName = project.name + " Extension" + ".jar"
|
|
|
|
}
|
|
|
|
|
|
|
|
description = 'MMO'
|
|
|
|
|
|
|
|
tasks.withType(Jar) {
|
|
|
|
destinationDirectory = file("$rootDir/bin/")
|
2020-12-01 15:55:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
configurations.all {
|
|
|
|
exclude group: 'com.mojang', module: 'authlib'
|
2020-11-28 22:11:10 +01:00
|
|
|
}
|