apply plugin: 'java' group "mod.sin" version "4.2" repositories { mavenCentral() mavenLocal() maven { url 'https://jitpack.io' } maven { url "http://gotti.no-ip.org/maven/repository" } } dependencies { compile 'com.github.ago1024:WurmServerModLauncher:v0.46' compile 'com.github.Sindusk:sindusklibrary:v2.1' } 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" }