From 89e2db666a1e77c5ce2e368537e5089e525b1be1 Mon Sep 17 00:00:00 2001 From: Alex <alexander.riegel@hft-stuttgart.de> Date: Thu, 1 Aug 2024 16:38:27 +0200 Subject: [PATCH] Adjusted dependencies in CityDoctorParent pom.xml --- CityDoctorParent/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CityDoctorParent/pom.xml b/CityDoctorParent/pom.xml index 41c0631..e018e31 100644 --- a/CityDoctorParent/pom.xml +++ b/CityDoctorParent/pom.xml @@ -53,7 +53,11 @@ <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> + <source>17</source> + <target>17</target> <compilerId>eclipse</compilerId> + <showWarnings>true</showWarnings> + <showDeprecation>true</showDeprecation> </configuration> <dependencies> <dependency> @@ -235,6 +239,16 @@ <version>2.15.0</version> <type>pom</type> </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-compiler-eclipse</artifactId> + <version>2.15.0</version> + </dependency> + <dependency> + <groupId>org.eclipse.jdt</groupId> + <artifactId>ecj</artifactId> + <version>3.38.0</version> + </dependency> </dependencies> </dependencyManagement> <dependencies> -- GitLab