-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.gradle
33 lines (27 loc) · 948 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
group 'acmi.l2.clientmod'
version '2.4.0'
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/pec/mvn-repo" }
maven { url "https://raw.githubusercontent.com/acmi/AutoCompleteComboBox/mvn-repo" }
}
dependencies {
compile group: 'acmi.l2.clientmod', name: 'pec', version: '1.3.+'
}
jar {
archiveName = "${rootProject.name}.jar"
configurations.compile.collect {
from(zipTree(it)) {
exclude 'META-INF/**'
}
}
manifest {
attributes('Main-Class': 'acmi.l2.clientmod.l2pe.L2PE')
attributes('Version': version)
}
}