From aa6e0a1ec2ff136419758c81eb91819e4f7f7ef2 Mon Sep 17 00:00:00 2001 From: Peter Paul Bakker Date: Fri, 15 May 2026 15:21:01 +0200 Subject: [PATCH 1/2] Remove .idea from repository and tighten .gitignore --- .idea/codeStyles/Project.xml | 446 ------------------ .idea/codeStyles/codeStyleConfig.xml | 5 - .idea/compiler.xml | 24 - .../copyright/Apache_License__Version_2_0.xml | 6 - .idea/copyright/profiles_settings.xml | 3 - .idea/encodings.xml | 14 - .idea/google-java-format.xml | 6 - .idea/jarRepositories.xml | 20 - .idea/misc.xml | 14 - .idea/vcs.xml | 6 - 10 files changed, 544 deletions(-) delete mode 100644 .idea/codeStyles/Project.xml delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/copyright/Apache_License__Version_2_0.xml delete mode 100644 .idea/copyright/profiles_settings.xml delete mode 100644 .idea/encodings.xml delete mode 100644 .idea/google-java-format.xml delete mode 100644 .idea/jarRepositories.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index de3c469..0000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,446 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index 79ee123..0000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index 1c55b9f..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/copyright/Apache_License__Version_2_0.xml b/.idea/copyright/Apache_License__Version_2_0.xml deleted file mode 100644 index 1268441..0000000 --- a/.idea/copyright/Apache_License__Version_2_0.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml deleted file mode 100644 index 38b896c..0000000 --- a/.idea/copyright/profiles_settings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml deleted file mode 100644 index 91f8d5c..0000000 --- a/.idea/encodings.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/google-java-format.xml b/.idea/google-java-format.xml deleted file mode 100644 index 2aa056d..0000000 --- a/.idea/google-java-format.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml deleted file mode 100644 index 712ab9d..0000000 --- a/.idea/jarRepositories.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 6030f2b..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file From 5a95b9edeffbb8af78de5eaf705ce6ed78017757 Mon Sep 17 00:00:00 2001 From: Peter Paul Bakker Date: Fri, 15 May 2026 15:59:43 +0200 Subject: [PATCH 2/2] Fix .gitignore to ignore full .idea directory --- .gitignore | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9f3c533..7bd547f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ -.idea/libraries -.idea/tasks.xml -.idea/workspace.xml +.idea/ +# Maven Shade plugin output dependency-reduced-pom.xml -target +# Maven build output +target/ +**/target/