Initial Commit

This commit is contained in:
Sindusk
2018-03-31 13:23:16 -04:00
commit 7f3733295f
150 changed files with 16109 additions and 0 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"
}