blob: 5b5ba77be71e16f81c1682481354bc1fad07d2a7 [file] [log] [blame]
apply plugin: 'java'
apply plugin: 'clone-artifacts'
apply plugin: 'maven'
repositories {
maven { url = uri(rootProject.cloneArtifacts.repository) }
}
test {
// todo: disable this for CI since we'll use the CI UI to do the report.
reports.html.enabled = true
}
apply from: "$rootDir/buildSrc/base/base.gradle"
task publishLocal(type: Upload) {
configuration = configurations.archives
repositories {
mavenDeployer {
repository(url: uri("$rootProject.ext.localRepo"))
}
}
}