Removal of all Armour-related options. Removed options for fixArmourLimitSpellEffect and fixArmourLimitBuffBug. These were fixed in vanilla WU 1.8.
32 lines
595 B
Groovy
32 lines
595 B
Groovy
apply plugin: 'java'
|
|
|
|
group "mod.sin"
|
|
version "3.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "http://gotti.no-ip.org/maven/repository" }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
|
|
dependencies {
|
|
compile 'org.gotti.wurmunlimited:server-modlauncher:0.39-beta1'
|
|
compile 'com.github.Sindusk:sindusklibrary:v1.7'
|
|
}
|
|
|
|
jar {
|
|
archiveName "${project.name}.jar"
|
|
}
|
|
|
|
|
|
task dist(type: Zip) {
|
|
into("mods", {
|
|
into(project.name, {
|
|
from jar
|
|
})
|
|
from fileTree(dir: 'mods', include: '*')
|
|
})
|
|
|
|
archiveName "${project.name}-${project.version}.zip"
|
|
}
|