From 223cebe4ae9db2c82243d636b5a9fb414b4e0bbc Mon Sep 17 00:00:00 2001 From: Christian Koop Date: Sat, 27 May 2023 14:41:00 +0200 Subject: [PATCH 1/3] Specifies the Java release version in the pom.xml files Used by the Java compile since Java 9 --- Bootstrap/pom.xml | 3 ++- UltimateStacker/pom.xml | 7 ++++--- UltimateStackerAPI/pom.xml | 1 + pom.xml | 1 + 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Bootstrap/pom.xml b/Bootstrap/pom.xml index 889aea1..f01df61 100644 --- a/Bootstrap/pom.xml +++ b/Bootstrap/pom.xml @@ -20,6 +20,7 @@ ${java.version} ${java.version} + ${java.release} @@ -60,4 +61,4 @@ - \ No newline at end of file + diff --git a/UltimateStacker/pom.xml b/UltimateStacker/pom.xml index cfccb7d..0cf894c 100644 --- a/UltimateStacker/pom.xml +++ b/UltimateStacker/pom.xml @@ -17,11 +17,12 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.0 + 3.8.1 - 1.8 - 1.8 + ${java.version} + ${java.version} + ${java.release} diff --git a/UltimateStackerAPI/pom.xml b/UltimateStackerAPI/pom.xml index eae0c8f..8ec57b3 100644 --- a/UltimateStackerAPI/pom.xml +++ b/UltimateStackerAPI/pom.xml @@ -22,6 +22,7 @@ ${java.version} ${java.version} + ${java.release} diff --git a/pom.xml b/pom.xml index 1d206df..fea7529 100644 --- a/pom.xml +++ b/pom.xml @@ -15,6 +15,7 @@ 2.5.0-DEV 1.8 + 8 From 584c9243e9e0f6eee44291c6174a37a93c2fa657 Mon Sep 17 00:00:00 2001 From: Christian Koop Date: Sat, 27 May 2023 14:32:08 +0200 Subject: [PATCH 2/3] Configures sourceEncoding to be UTF-8 in pom.xml --- pom.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pom.xml b/pom.xml index fea7529..b2b74ea 100644 --- a/pom.xml +++ b/pom.xml @@ -16,6 +16,8 @@ 2.5.0-DEV 1.8 8 + + UTF-8 From 2fd7616228f77f8ffbe93a6194604e783a8d07be Mon Sep 17 00:00:00 2001 From: Christian Koop Date: Sat, 27 May 2023 14:33:36 +0200 Subject: [PATCH 3/3] Updates .gitignore to be more specific --- .gitignore | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index e69102e..94f7a65 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,4 @@ -\.idea -\target -UltimateStacker.iml -.settings/ -.classpath -.project \ No newline at end of file +/**/target/ + +/.idea/ +/*.iml