mirror of
https://github.com/Auxilor/EcoEnchants.git
synced 2024-11-23 15:15:12 +01:00
24 lines
522 B
Groovy
24 lines
522 B
Groovy
|
group 'com.willfp'
|
||
|
version '5.0.0'
|
||
|
description = 'MMO Extension'
|
||
|
|
||
|
repositories {
|
||
|
maven {
|
||
|
url 'https://mvn.lumine.io/repository/maven-public/'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compileOnly 'net.Indyuce:MMOCore:1.7.0'
|
||
|
compileOnly 'net.Indyuce:MMOItems:6.5.4'
|
||
|
compileOnly 'net.Indyuce:MMOLib:1.7.3'
|
||
|
}
|
||
|
|
||
|
configurations.all {
|
||
|
exclude group: 'com.mojang', module: 'authlib'
|
||
|
exclude group: 'org.kitteh.pastegg'
|
||
|
}
|
||
|
|
||
|
shadowJar {
|
||
|
archiveFileName = project.getDescription() + " v" + project.version + ".jar"
|
||
|
}
|