1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00
JSON-java/build.gradle
2016-05-13 23:22:54 -05:00

48 lines
1.1 KiB
Groovy

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'jacoco'
sourceSets {
// Uncomment main if you have merged JSON-Java and JSON-Java-unit-test code
main {
java {
srcDir 'src'
exclude 'test/'
}
}
test {
java {
srcDir 'src/test'
exclude 'resources/'
}
resources {
srcDir 'resources'
}
}
}
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.+'
testCompile group: 'com.jayway.jsonpath', name: 'json-path', version: '2.1.0'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.9.5'
// Uncomment if you are testing against a JSON-Java release
// testCompile 'org.json:json:20160212'
// Uncomment if you have copied a local JSON-Java jar file into this project
// testCompile files('./JSON-Java.jar')
}
test { finalizedBy jacocoTestReport }
jacocoTestReport{
additionalSourceDirs = files(sourceSets.main.allJava.srcDirs)
reports {
xml.enabled false
csv.enabled false
html.destination "${buildDir}/reports/jacoco/html"
}
executionData = files('build/jacoco/test.exec')
}