-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
58 lines (39 loc) · 1.23 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
55
56
57
buildscript {
repositories {
jcenter()
}
}
plugins {
id "com.jfrog.bintray" version "1.6"
}
apply plugin: 'maven-publish'
apply plugin: 'groovy'
apply from: file('publish.gradle')
repositories {
jcenter()
}
sourceCompatibility = 1.8
dependencies {
compile "com.sparkjava:spark-core:2.6.0.RC0"
compile "commons-io:commons-io:2.5"
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8"
compile "com.fasterxml.jackson.core:jackson-annotations:2.8.8"
compile "com.fasterxml.jackson.core:jackson-databind:2.8.8"
compile 'org.apache.commons:commons-lang3:3.4'
compile "com.intellij:annotations:12.0"
compile 'org.slf4j:slf4j-simple:1.7.21'
compile 'commons-cli:commons-cli:1.3.1'
compile('com.github.fge:json-schema-validator:2.2.6')
testCompile('org.codehaus.groovy:groovy-all:2.4.6')
testCompile "org.spockframework:spock-core:1.0-groovy-2.4"
testCompile 'io.rest-assured:rest-assured:3.0.0'
compile 'org.reflections:reflections:0.9.11'
}
jar {
from rootProject.file('LICENSE')
from rootProject.file('NOTICE')
}
test.onlyIf {
// run tests locally until we get the circleci port issue sorted.
Boolean.getBoolean('run.tests')
}