blob: 0a46b1af4301dabfbcc55a1340a541206bcbdafa [file] [log] [blame]
apply plugin: 'java'
apply plugin: 'sdk-java-lib'
dependencies {
compile project(':external:fat32lib')
}
group = 'com.android.tools.build'
archivesBaseName = 'jobb'
version = rootProject.ext.baseVersion
// configure the manifest of the sdkJar task
sdkJar.manifest.attributes("Main-Class": "com.android.jobb.Main")
sdk {
linux {
item('etc/jobb') { executable true }
}
mac {
item('etc/jobb') { executable true }
}
windows {
item 'etc/jobb.bat'
}
}
// turn off strict javadoc
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}