This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 243e46d34c1aff7a9df94ab29e292de43cef2f4d Author: Benoit TELLIER <[email protected]> AuthorDate: Tue Aug 27 11:55:26 2024 +0200 [IMPROVEMENT] Set maven.compiler Without this my IDE screws up compilation... --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index 21c63a53e9..d63ed615e8 100644 --- a/pom.xml +++ b/pom.xml @@ -589,6 +589,8 @@ --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <target.jdk>21</target.jdk> + <maven.compiler.source>${target.jdk}</maven.compiler.source> + <maven.compiler.target>${target.jdk}</maven.compiler.target> <james-skin.version>1.9-SNAPSHOT</james-skin.version> <!-- This property contains the directory where to deploy when running using "-Psite-reports" profile --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
