-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
54 lines (36 loc) · 1.4 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
52
53
54
buildscript {
repositories {
jcenter()
mavenLocal()
}
dependencies {
classpath group: 'io.rhizomatic', name: 'rhizomatic-assembly', version: rzVersion
}
}
plugins {
id 'com.zyxist.chainsaw' version '0.1.3'
id "org.zeroturnaround.gradle.jrebel" version "1.1.6"
}
defaultTasks 'clean', 'build', 'rhizomaticAssembly'
sourceCompatibility = 1.9
subprojects {
group 'io.rhizomatic.samples'
version '0.1-SNAPSHOT'
repositories {
jcenter()
mavenLocal()
}
apply plugin: 'java'
apply plugin: 'com.zyxist.chainsaw'
dependencies {
compile group: 'io.rhizomatic', name: 'rhizomatic-api', version: rzVersion
compile group: 'javax.inject', name: 'javax.inject', version: '1'
compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.1'
compile group: 'org.jetbrains', name: 'annotations', version: '15.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.easymock', name: 'easymock', version: '3.5.1'
testCompile group: 'io.rhizomatic', name: 'rhizomatic-kernel', version: rzVersion
testCompile group: 'io.rhizomatic', name: 'rhizomatic-inject', version: rzVersion
testCompile group: 'io.rhizomatic', name: 'rhizomatic-web', version: rzVersion
}
}