From b569d0bcac5df8d75af54a8a3fd0b59141c5bf79 Mon Sep 17 00:00:00 2001 From: Scherbaum Maximilian <ms622@hdm-stuttgart.de> Date: Thu, 22 Feb 2024 10:53:58 +0100 Subject: [PATCH] update: changed version number and add release version of java to maven plugin --- pom.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 00cecae4..944115d5 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ <groupId>de.hdm_stuttgart.battlearena</groupId> <artifactId>BattleArena</artifactId> - <version>v0.0.1</version> + <version>v0.6.1</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -118,6 +118,10 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> + <configuration> + <!-- Add the module version --> + <release>17</release> <!-- or any valid Java version --> + </configuration> </plugin> </plugins> </build> -- GitLab