LUCENE-9215: add changes, tune the build.gradle of the doclet project to have correct settings

This commit is contained in:
Uwe Schindler 2020-09-02 19:54:55 +02:00
parent 236455296c
commit aabd36332f
2 changed files with 14 additions and 2 deletions

View File

@ -15,8 +15,18 @@
* limitations under the License.
*/
apply plugin: 'java-library'
plugins {
id 'java-library'
}
version = "1.0.0-SNAPSHOT"
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"
}

View File

@ -162,6 +162,8 @@ Other
* 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 =======================
API Changes