From 6a048ee34d4cd6e6d580bfb85021685940729e6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Sch=C3=B6b?= Date: Wed, 30 Oct 2024 11:49:58 +0100 Subject: [PATCH] fix some versions and fix some warnings --- pom.xml | 16 +++++++++++++--- .../org/rumbledb/context/GlobalVariables.java | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index d468b6ca8..58e7d86b0 100644 --- a/pom.xml +++ b/pom.xml @@ -46,9 +46,10 @@ eclipse 1.8 1.8 - - ${project.basedir}/org.eclipse.jdt.core.prefs - + + -properties + ${project.basedir}/org.eclipse.jdt.core.prefs + @@ -63,6 +64,14 @@ + + org.apache.maven.plugins + maven-resources-plugin + 3.3.1 + + UTF-8 + + org.apache.maven.plugins maven-jar-plugin @@ -150,6 +159,7 @@ org.apache.maven.plugins maven-release-plugin + 3.0.1 true false diff --git a/src/main/java/org/rumbledb/context/GlobalVariables.java b/src/main/java/org/rumbledb/context/GlobalVariables.java index ce93dec24..18754fb13 100644 --- a/src/main/java/org/rumbledb/context/GlobalVariables.java +++ b/src/main/java/org/rumbledb/context/GlobalVariables.java @@ -15,7 +15,7 @@ public class GlobalVariables implements Serializable, KryoSerializable { private Set globalVariables; public GlobalVariables() { - globalVariables = new HashSet<>(); + this.globalVariables = new HashSet<>(); } public void addGlobalVariable(Name globalVariable) {