-
Notifications
You must be signed in to change notification settings - Fork 16
/
build.gradle
35 lines (29 loc) · 1.06 KB
/
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
group 'acmi.l2.clientmod'
version '1.6.1'
apply plugin: 'java'
repositories {
mavenCentral()
maven { url "https://raw.githubusercontent.com/acmi/L2io/mvn-repo" }
maven { url "https://raw.githubusercontent.com/acmi/Serializer/mvn-repo" }
maven { url "https://raw.githubusercontent.com/acmi/L2Crypt/mvn-repo" }
maven { url "https://raw.githubusercontent.com/acmi/L2unreal/mvn-repo" }
maven { url "https://raw.githubusercontent.com/acmi/AutoCompleteComboBox/mvn-repo" }
}
dependencies {
compile group: 'acmi.l2.clientmod', name: 'l2unreal', version: '1.3.+'
compile group: 'acmi.util', name: 'autocomletecombobox', version: '1.1'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.3'
compile files('lib/jsquish.jar')
}
jar {
archiveName = "${rootProject.name}.jar"
configurations.compile.collect {
from(zipTree(it)) {
exclude 'META-INF/**'
}
}
manifest {
attributes('Main-Class': 'acmi.l2.clientmod.l2smr.L2smr')
attributes('Version': version)
}
}