From b25d57ae798fd014ff9152858554400a3c1286c5 Mon Sep 17 00:00:00 2001 From: EspenTinius Date: Fri, 30 Jan 2026 14:09:19 +0100 Subject: [PATCH] Ny gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ny gitignore for å ignorere target fil og for cross utvikling over flere IDE-er --- .gitignore | 49 ++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 44 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 2f43530..60a3681 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +# ===== Maven ===== target/ pom.xml.tag pom.xml.releaseBackup @@ -7,11 +8,49 @@ release.properties dependency-reduced-pom.xml buildNumber.properties .mvn/timing.properties -# https://github.com/takari/maven-wrapper#usage-without-binary-jar -.mvn/wrapper/maven-wrapper.jar -# Eclipse m2e generated files -# Eclipse Core +# ===== Java ===== +*.class +*.log +*.ctxt + +# ===== Package Files ===== +*.jar +*.war +*.ear + +# ===== IDE: IntelliJ ===== +.idea/ +*.iml +*.iws +out/ + +# ===== IDE: Eclipse ===== .project -# JDT-specific (Eclipse Java Development Tools) .classpath +.settings/ +bin/ + +# ===== IDE: VS Code ===== +.vscode/ + +# ===== OS Files ===== +.DS_Store +Thumbs.db + +# ===== Logs ===== +logs/ +*.log + +# ===== Temporary files ===== +*.tmp +*.swp +*.swo + +# ===== Test output ===== +surefire-reports/ +failsafe-reports/ + +# ===== Coverage tools ===== +coverage/ +jacoco.exec