Author: jawi
Date: Fri Jan 29 12:35:15 2016
New Revision: 1727566
URL: http://svn.apache.org/viewvc?rev=1727566&view=rev
Log:
Only use the doclint option when compiling with Java 8.
Modified:
ace/trunk/build.gradle
Modified: ace/trunk/build.gradle
URL: http://svn.apache.org/viewvc/ace/trunk/build.gradle?rev=1727566&r1=1727565&r2=1727566&view=diff
==============================================================================
--- ace/trunk/build.gradle (original)
+++ ace/trunk/build.gradle Fri Jan 29 12:35:15 2016
@@ -32,13 +32,16 @@ subprojects {
def bndProject = bndWorkspace.getProject(name)
if (bndProject != null) {
plugins.apply 'biz.aQute.bnd'
-
+
test {
useTestNG()
}
-
+
tasks.withType(Javadoc) {
- options.addStringOption('Xdoclint:none', '-quiet')
+ def runningJVM = JavaVersion.current().toString()
+ if (runningJVM.matches("1\\.8.*")) {
+ options.addStringOption('Xdoclint:none', '-quiet')
+ }
}
}
|