This is an automated email from the ASF dual-hosted git repository. tallison pushed a commit to branch branch_1x in repository https://gitbox.apache.org/repos/asf/tika.git
commit d01c73783d2abf96c1d6ad57da5310341b62aaff Author: tallison <[email protected]> AuthorDate: Mon Dec 16 13:48:03 2019 -0500 TIKA-3011 -- lock down bytecode compatibility with release version --- tika-parent/pom.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml index 0283ecb..0f42b2d 100644 --- a/tika-parent/pom.xml +++ b/tika-parent/pom.xml @@ -544,6 +544,22 @@ </plugins> </build> </profile> + <profile> + <id>jdk9</id> + <activation> + <jdk>[1.9,)</jdk> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <release>8</release> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles> <scm>
