-
Type:
Bug
-
Status: Resolved
-
Resolution: Fixed
-
Affects Version/s: 1.2
-
Fix Version/s: 1.3-rc-1
The build files below fails with javadoc: error - option -locale must be first on the command line.
apply plugin: 'java' javadoc { options { locale = 'en_US' encoding = 'UTF-8' docFilesSubDirs = true excludeDocFilesSubDir '.svn' } }
Javadoc gets called with the options in the following order (taken from build/tmp/javadoc/javadoc.options.)
-excludedocfilessubdir '.svn' -locale 'en_US' -docfilessubdirs -doctitle 'test API' -encoding 'UTF-8'