Files
Wurm-Armoury/build.gradle
Sindusk 1ce8da9c65 New armour stat controls
New material modifications
Control material statistics
Improved configuration
Fix for dual wield change error
2018-05-29 07:06:12 -04:00

31 lines
527 B
Groovy

apply plugin: 'java'
group "mod.sin"
version "2.0"
repositories {
mavenCentral()
maven { url "http://gotti.no-ip.org/maven/repository" }
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'com.github.Sindusk:sindusklibrary:v1.3'
}
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"
}