Skip to content

Commit

Permalink
Disable doclint for java 8
Browse files Browse the repository at this point in the history
Conflicts:
	build.gradle
  • Loading branch information
JesusFreke authored and iBotPeaches committed Jan 21, 2015
1 parent 026d353 commit 07ceb4f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions brut.apktool.smali/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,22 @@ subprojects {
apply plugin: 'java'
apply plugin: 'idea'

if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}

version = parent.version

ext {
depends = [guava: 'com.google.guava:guava:14.0',
depends = [guava: 'com.google.guava:guava:18.0',
findbugs: 'com.google.code.findbugs:jsr305:1.3.9',
junit: 'junit:junit:4.6',
antlr_runtime: 'org.antlr:antlr-runtime:3.5',
antlr: 'org.antlr:antlr:3.5',
antlr_runtime: 'org.antlr:antlr-runtime:3.5.2',
antlr: 'org.antlr:antlr:3.5.2',
commons_cli: 'commons-cli:commons-cli:1.2',
jflex: 'de.jflex:jflex:1.4.3',
proguard: 'net.sf.proguard:proguard-base:4.8'
Expand Down

0 comments on commit 07ceb4f

Please sign in to comment.