mirror of https://github.com/apache/lucene.git
LUCENE-9871: minor cleanups of extra semicolons and solr build remnants.
This commit is contained in:
parent
b2b52ca92a
commit
b9c22fdb49
|
@ -63,12 +63,12 @@ allprojects {
|
|||
|
||||
taskResources = resources
|
||||
dependsOn sourceSets.main.compileClasspath
|
||||
classpath = sourceSets.main.compileClasspath;
|
||||
srcDirSet = sourceSets.main.java;
|
||||
classpath = sourceSets.main.compileClasspath
|
||||
srcDirSet = sourceSets.main.java
|
||||
|
||||
relativeProjectLinks = true
|
||||
|
||||
// Place the documentation under Lucene or Solr's documentation directory.
|
||||
// Place the documentation under the documentation directory.
|
||||
// docroot is defined in 'documentation.gradle'
|
||||
outputDir = project.docroot.toPath().resolve(project.relativeDocPath).toFile()
|
||||
}
|
||||
|
@ -362,7 +362,7 @@ class RenderJavadocTask extends DefaultTask {
|
|||
def opts = []
|
||||
opts << [ '-overview', project.file("${srcDirs[0]}/overview.html") ]
|
||||
opts << [ '-sourcepath', srcDirs.join(File.pathSeparator) ]
|
||||
opts << [ '-subpackages', project.path.startsWith(':lucene') ? 'org.apache.lucene' : 'org.apache.solr' ]
|
||||
opts << [ '-subpackages', 'org.apache.lucene' ]
|
||||
opts << [ '-d', outputDir ]
|
||||
opts << '-protected'
|
||||
opts << [ '-encoding', 'UTF-8' ]
|
||||
|
|
Loading…
Reference in New Issue