-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
36 lines (29 loc) · 854 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
apply plugin: 'java'
group "mod.sin"
version "2.0"
repositories {
mavenCentral()
maven { url "http://jcenter.bintray.com" }
maven { url "http://gotti.no-ip.org/maven/repository" }
maven { url 'https://jitpack.io' }
}
dependencies {
compile 'org.gotti.wurmunlimited:server-modlauncher:0.43'
compile 'com.github.Sindusk:sindusklibrary:v2.3'
compile 'com.github.bdew-wurm:bdew_server_mod_tools:v1.0.0'
compile 'com.github.Sindusk:DiscordRelay:v1.2'
compile 'com.github.Sindusk:DUSKombat:v1.0'
compile 'com.github.Sindusk:TreasureHunting:1.1.4'
}
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"
}