This is an automated email from the ASF dual-hosted git repository.
ankitsultana pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new 7cafd70765 Set maven.compiler flags explicitly (#13710)
7cafd70765 is described below
commit 7cafd7076599cc5314085bfc8d3386a601bdf57b
Author: Ankit Sultana <[email protected]>
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 d6fe5cc05e..7f84aa742d 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: [email protected]
For additional commands, e-mail: [email protected]