mirror of https://github.com/apache/lucene.git
LUCENE-9215: add changes, tune the build.gradle of the doclet project to have correct settings
This commit is contained in:
parent
236455296c
commit
aabd36332f
|
@ -15,8 +15,18 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
apply plugin: 'java-library'
|
plugins {
|
||||||
|
id 'java-library'
|
||||||
|
}
|
||||||
|
|
||||||
version = "1.0.0-SNAPSHOT"
|
version = "1.0.0-SNAPSHOT"
|
||||||
group = "org.apache.lucene.tools"
|
group = "org.apache.lucene.tools"
|
||||||
description = 'Doclet-based javadoc validation.'
|
description = 'Doclet-based javadoc validation'
|
||||||
|
|
||||||
|
sourceCompatibility = JavaVersion.VERSION_11
|
||||||
|
targetCompatibility = JavaVersion.VERSION_11
|
||||||
|
|
||||||
|
tasks.withType(JavaCompile) {
|
||||||
|
options.compilerArgs += ["--release", targetCompatibility.toString()]
|
||||||
|
options.encoding = "UTF-8"
|
||||||
|
}
|
||||||
|
|
|
@ -162,6 +162,8 @@ Other
|
||||||
|
|
||||||
* LUCENE-9433: Remove Ant support from trunk (Erick Erickson, Uwe Schindler et.al.)
|
* LUCENE-9433: Remove Ant support from trunk (Erick Erickson, Uwe Schindler et.al.)
|
||||||
|
|
||||||
|
* LUCENE-9215: Replace checkJavaDocs.py with doclet (Robert Muir, Dawid Weiss, Uwe Schindler)
|
||||||
|
|
||||||
======================= Lucene 8.7.0 =======================
|
======================= Lucene 8.7.0 =======================
|
||||||
|
|
||||||
API Changes
|
API Changes
|
||||||
|
|
Loading…
Reference in New Issue