forked from mrserverless/dropwizard-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (29 loc) · 752 Bytes
/
build.gradle
File metadata and controls
37 lines (29 loc) · 752 Bytes
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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:' + shadowVersion
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:' + gradleBintrayVersion
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.1'
}
subprojects {
apply plugin: 'maven'
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
group = 'com.yunspace.dropwizard'
version = '0.7.1-2'
repositories {
mavenLocal()
jcenter()
}
dependencies {
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile 'org.easytesting:fest-assert-core:2.0M10'
testCompile 'junit:junit:4.11'
}
}