-
Notifications
You must be signed in to change notification settings - Fork 11
/
build.gradle
47 lines (38 loc) · 1019 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
apply plugin: 'java'
buildscript {
repositories {
maven {
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local/'
}
jcenter()
}
dependencies {
classpath 'org.akhikhl.gretty:gretty:1.1.7-SNAPSHOT'
}
}
subprojects {
apply plugin: 'org.akhikhl.gretty'
gretty {
scanInterval = 1 //Scan for changes every second
host = '0.0.0.0' //Enable network access from outside your local machine
servletContainer = 'jetty7' //Use Jetty7 which is compatible with JDK6
managedClassReload = true //Activate spring-loaded class reloading
integrationTestTask = 'integrationTest'
}
sourceCompatibility = 1.5
version = '1.0'
}
apply plugin: 'org.akhikhl.gretty'
farm {
include ':customer'
include ':car'
}
repositories {
maven {
url 'http://oss.jfrog.org/artifactory/oss-snapshot-local/'
}
jcenter()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
}