-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (42 loc) · 1002 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
39
40
41
42
43
44
45
46
47
48
49
50
51
group 'agoda.hotels.repo'
version '1.0-SNAPSHOT'
apply plugin:'application'
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'java'
sourceSets {
main {
java {
srcDir 'src'
}
}
test {
java {
srcDir 'test'
}
}
}
jar {
manifest {
attributes 'Main-Class': 'com.agoda.hotels.CLIdriver'
}
}
sourceCompatibility = 1.5
mainClassName = "com.agoda.hotels.CLIdriver"
repositories {
mavenCentral()
maven {
url "http://repo.typesafe.com/typesafe/releases/"
}
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.3.11'
compile group: 'com.typesafe.akka', name: 'akka-actor_2.10', version: '2.2.1'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.6.4'
runtime group: 'org.slf4j', name: 'slf4j-simple', version: '1.6.4'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
run{
standardInput = System.in
}
defaultTasks 'build', 'clean', 'run'