Files
Wurm-Armoury/build.gradle
Sindusk 82056ece66 Update to WU 1.8.
Removal of all Armour-related options.
Removed options for fixArmourLimitSpellEffect and fixArmourLimitBuffBug. These were fixed in vanilla WU 1.8.
2018-09-20 04:46:44 -04:00

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"
}