Gradle Update

This commit is contained in:
Sindusk
2018-03-30 18:27:57 -04:00
parent 155d28401e
commit 6cbadbf476
10 changed files with 297 additions and 6 deletions

31
build.gradle Normal file
View File

@@ -0,0 +1,31 @@
apply plugin: 'java'
group "mod.sin"
version "1.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.33-beta1'
compile 'com.github.Sindusk:sindusklibrary:v1.0'
}
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"
}