-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
38 lines (27 loc) · 895 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
37
38
plugins {
id 'com.github.johnrengelman.shadow' version '1.2.4'
id 'com.github.ben-manes.versions' version '0.13.0'
}
group 'com.velocity'
version '0.1.0'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
mainClassName = 'com.velocity.jwakfu.JWakfu'
jar {
manifest {
attributes 'Main-Class': mainClassName
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile group: 'io.netty', name: 'netty-all', version: '4.1.6.Final'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.22'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.22'
compile group: 'com.thoughtworks.xstream', name: 'xstream', version: '1.4.9'
compile group: 'xmlpull', name: 'xmlpull', version: '1.1.3.1'
}