summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Warrington <cmw@google.com>2016-05-03 00:36:53 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-05-03 00:36:53 +0000
commit17e0b4d441b1f319608f8e29f01e86c48aa387eb (patch)
treef2efafdb10b8193d465c3115eea7f9bd9d735f08
parent64112f59ce137b93ffe3728885e4ef75cb1264bb (diff)
parentc4befae8ade4e14e10a39c259228f142d624a801 (diff)
downloaddata-binding-17e0b4d441b1f319608f8e29f01e86c48aa387eb.tar.gz
Turn off javadoc strict mode for data binding.
am: c4befae8ad * commit 'c4befae8ade4e14e10a39c259228f142d624a801': Turn off javadoc strict mode for data binding. Change-Id: I7e6282d35babe8134f3f80e5e95f75d9aff82e39
-rw-r--r--baseLibrary/build.gradle6
-rw-r--r--compiler/build.gradle4
2 files changed, 8 insertions, 2 deletions
diff --git a/baseLibrary/build.gradle b/baseLibrary/build.gradle
index 7489e0d1..8cbfd6d5 100644
--- a/baseLibrary/build.gradle
+++ b/baseLibrary/build.gradle
@@ -62,6 +62,10 @@ task prebuildJar(type : Copy) {
}
}
+javadoc {
+ options.addStringOption('Xdoclint:none', '-quiet')
+}
+
project.ext.pomName = 'Data Binding Base Library'
project.ext.pomDesc = 'Shared library between Data Binding runtime lib and compiler'
-enablePublishing(this, true) \ No newline at end of file
+enablePublishing(this, true)
diff --git a/compiler/build.gradle b/compiler/build.gradle
index 0b2c6b25..cd4eac27 100644
--- a/compiler/build.gradle
+++ b/compiler/build.gradle
@@ -60,7 +60,9 @@ uploadArchives {
}
}
-
+javadoc {
+ options.addStringOption('Xdoclint:none', '-quiet')
+}
project.ext.pomName = 'Data Binding Annotation Processor'
project.ext.pomDesc = 'The annotation processor for Data Binding. Generates binding classes for runtime.'