blob: 1a5f414e9aa772447effd05183e475f35ec1e8a0 [file] [log] [blame]
/*
* Copyright (C) 2017. Uber Technologies
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
id "java"
// For code coverage:
id 'jacoco'
id 'com.github.kt3k.coveralls'
}
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
configurations.all {
resolutionStrategy {
// Force needed, since:
// a) There are newer versions of CF than the one we forked
// b) It seems x.y.z-name < x.y.z for gradle dependency resolution purposes.
force deps.build.checkerDataflow
}
}
dependencies {
compileOnly deps.apt.autoValue
annotationProcessor deps.apt.autoValue
compileOnly deps.apt.autoService
annotationProcessor deps.apt.autoService
compileOnly deps.build.errorProneCheckApi
compile deps.build.checkerDataflow
compile deps.build.guava
testCompile deps.test.junit4
testCompile(deps.build.errorProneTestHelpers) {
exclude group: "junit", module: "junit"
}
testCompile deps.test.jetbrainsAnnotations
testCompile deps.test.junit5Jupiter
testCompile deps.test.cfQual
testCompile deps.test.cfCompatQual
testCompile project(":test-java-lib")
testCompile deps.test.inferAnnotations
testCompile deps.apt.javaxInject
testCompile deps.test.rxjava2
testCompile deps.test.commonsLang
testCompile deps.test.commonsLang3
}
javadoc {
failOnError = false
}
test {
maxHeapSize = "1024m"
if (!JavaVersion.current().java9Compatible) {
jvmArgs "-Xbootclasspath/p:${configurations.errorproneJavac.asPath}"
}
}
apply from: rootProject.file("gradle/gradle-mvn-push.gradle")
jacoco {
toolVersion = "0.8.2"
}
// From https://github.com/kt3k/coveralls-gradle-plugin
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}