-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
51 lines (45 loc) · 1.89 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
group 'tech.ray-eldath'
version '0.0.1'
apply plugin: 'java'
apply plugin: 'scala'
apply plugin: 'application'
mainClassName = 'ray.eldath.avalon.executive.main.MainServer'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
maven {
url 'http://maven.aliyun.com/nexus/content/groups/public/'
}
jcenter()
mavenCentral()
maven {
url 'https://jitpack.io'
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/org.scala-lang/scala-library
compile group: 'org.scala-lang', name: 'scala-library', version: '2.12.2'
// https://mvnrepository.com/artifact/org.json/json
compile group: 'org.json', name: 'json', version: '20160810'
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.5'
// https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-server
compile group: 'org.eclipse.jetty', name: 'jetty-server', version: '9.4.6.v20170531'
// https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-servlet
compile group: 'org.eclipse.jetty', name: 'jetty-servlet', version: '9.4.6.v20170531'
// https://mvnrepository.com/artifact/org.eclipse.jetty/jetty-util
compile group: 'org.eclipse.jetty', name: 'jetty-util', version: '9.4.6.v20170531'
// https://mvnrepository.com/artifact/com.spotify/docker-client
compile group: 'com.spotify', name: 'docker-client', version: '8.8.0'
}
tasks.withType(ScalaCompile) {
options.encoding = "UTF-8"
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}