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
|
apply plugin: 'java'
apply plugin: 'jacoco'
group = 'com.android.tools'
archivesBaseName = 'repository'
version = rootProject.ext.baseVersion
dependencies {
compile project(':base:common')
compile 'org.apache.commons:commons-compress:1.8.1'
compile 'com.google.jimfs:jimfs:1.1'
compile 'javax.xml.bind:jaxb-api:debian'
testCompile 'junit:junit:4.12'
}
test {
testLogging {
showStandardStreams = true
showStackTraces = true
exceptionFormat = "full"
}
}
sourceSets {
main.resources.srcDir 'src/main/java'
test.resources.srcDir 'src/test/java'
}
project.ext.pomName = 'Android Tools repository'
project.ext.pomDesc = 'A library for downloading and managing package repositories'
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
|