mirror of https://github.com/apache/lucene.git
LUCENE-9278: concatenate paths for sourcepath using path separator rather than whitespace (which causes invalid option to be passed to javadoc).
This commit is contained in:
parent
5354f7e88e
commit
26c9fce5db
|
@ -67,7 +67,7 @@ allprojects {
|
|||
|
||||
def opts = []
|
||||
opts += [ "-overview ${file("src/java/overview.html").toString()}" ]
|
||||
opts += [ "-sourcepath ${srcDirs.join(' ')}" ]
|
||||
opts += [ "-sourcepath ${srcDirs.join(File.pathSeparator)}" ]
|
||||
opts += [ "-subpackages ${project.path.startsWith(':lucene') ? 'org.apache.lucene' : 'org.apache.solr'}"]
|
||||
opts += [ "-d ${project.javadoc.destinationDir.toString()}" ]
|
||||
opts += [ "-protected" ]
|
||||
|
|
Loading…
Reference in New Issue