-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (29 loc) · 815 Bytes
/
build.gradle
File metadata and controls
35 lines (29 loc) · 815 Bytes
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
apply plugin: 'java'
group "mod.sin"
version "2.2"
repositories {
mavenCentral()
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.2'
// https://mvnrepository.com/artifact/org.apache.poi/poi
compile group: 'org.apache.poi', name: 'poi', version: '3.9'
}
jar {
archiveName "${project.name}.jar"
}
task dist(type: Zip) {
into("mods", {
into(project.name, {
from jar
})
into(project.name+"/libs", {
from fileTree(dir: 'libs', include: '*')
})
from fileTree(dir: 'mods', include: '*')
})
archiveName "${project.name}-${project.version}.zip"
}