This is an automated email from the ASF dual-hosted git repository. ankitsultana pushed a commit to branch release-1.2.0-rc in repository https://gitbox.apache.org/repos/asf/pinot.git
commit 75e297e2673c153af2ac126dcfe1ddad3a1fbf3e Author: Ankit Sultana <ankitsult...@gmail.com> AuthorDate: Mon Jul 29 19:47:55 2024 -0500 Set maven.compiler flags explicitly (#13710) --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index 2e180b413d..a70fdabab7 100644 --- a/pom.xml +++ b/pom.xml @@ -110,6 +110,11 @@ <jdk.version>11</jdk.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <!-- Setting maven.compiler flags to the jdk version. These are used by maven plugins like maven-javadoc-plugin --> + <maven.compiler.release>${jdk.version}</maven.compiler.release> + <maven.compiler.source>${jdk.version}</maven.compiler.source> + <maven.compiler.target>${jdk.version}</maven.compiler.target> + <!-- Configuration for unit/integration tests Property for running integration tests with profiles at the command line, where you do: --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org