-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
38 lines (30 loc) · 994 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 "4.0.1"
}
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'application'
group = 'com.vvvtimes.com'
version = '1.0-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
mainClassName = 'com.vvvtimes.server.MainServer'
jar {
manifest {
attributes 'Main-Class': mainClassName
}
}
repositories {
jcenter()
}
dependencies {
compile group: 'org.eclipse.jetty.aggregate', name: 'jetty-all', version: '8.1.22.v20160922'
compile group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.60'
compile group: 'commons-codec', name: 'commons-codec', version: '1.11'
compile group: 'net.sf.json-lib', name: 'json-lib', version: '2.4', classifier: 'jdk15'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.1'
compileOnly group: 'javax.servlet', name: 'javax.servlet-api', version: '3.0.1'
}