diff options
author | 2025-02-10 11:57:37 +0000 | |
---|---|---|
committer | 2025-02-25 16:11:39 +0000 | |
commit | 7a02c6f78b21b85b60855d6e96926217f4cc373a (patch) | |
tree | 39ccc117e3ce050730c0f8bf087e21751a206319 /pom.xml | |
parent | 6c3abe0d019772fec4d6432e1030646ad5f63fdd (diff) |
Uplift jetty to version 12.x.y
Issue-ID: POLICY-5254
Change-Id: I6575b8feb2a87f2861627fc19a36e4cb2db8f8dd
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -2,7 +2,7 @@ ============LICENSE_START======================================================= Copyright (C) 2018 Ericsson. All rights reserved. Modifications Copyright (C) 2020-2021 AT&T. All rights reserved. - Modifications Copyright (C) 2021, 2024 Nordix Foundation. + Modifications Copyright (C) 2021, 2024-2025 Nordix Foundation. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -28,6 +28,7 @@ <packaging>pom</packaging> <properties> + <maven.compiler.release>17</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> @@ -90,6 +91,17 @@ </plugin> </plugins> </pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.11.0</version> + <configuration> + <encoding>${project.build.sourceEncoding}</encoding> + <release>${maven.compiler.release}</release> + </configuration> + </plugin> + </plugins> </build> </project> |