diff options
Diffstat (limited to 'gradle/convention.gradle')
-rw-r--r-- | gradle/convention.gradle | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gradle/convention.gradle b/gradle/convention.gradle index 8dd086e..d0ed864 100644 --- a/gradle/convention.gradle +++ b/gradle/convention.gradle @@ -23,7 +23,13 @@ } tasks.withType(JavaCompile) { - options.incremental = true + // options.incremental = true + } + + javadoc { + options.links "http://docs.oracle.com/javase/7/docs/api/", + "http://docs.oracle.com/javaee/7/api/", + "http://docs.guava-libraries.googlecode.com/git/javadoc/" } test { @@ -52,6 +58,9 @@ } } +apply plugin: 'build-announcements' +apply plugin: 'build-dashboard' + // Generate wrapper, which is distributed as part of source to alleviate the need of installing gradle wrapper { gradleVersion = '2.2.1' |