Files
Wurm-Armoury/build.gradle
2025-11-04 12:37:16 -05:00

33 lines
605 B
Groovy

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