From d473ba5989dc1c6d2677388ba3b592fbaa5751f0 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Thu, 31 Oct 2024 11:00:23 +0000 Subject: [PATCH] Workflows: fix "test" workflow outputs --- .gitignore | 55 +++++++++++++++++++++++++++++++++++++++++++++++-------- 1 files changed, 47 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 32858aa..32e898b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,51 @@ +# Intellij +################### +.idea +*.iml + +# Eclipse # +########### +.project +.settings +.classpath + +# NetBeans # +############ +nbactions.xml +nb-configuration.xml +catalog.xml +nbproject + +# Compiled source # +################### +*.com *.class +*.dll +*.exe +*.o +*.so -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - -# Package Files # +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso *.jar -*.war -*.ear +*.rar +*.tar +*.zip -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid* +# Logs and databases # +###################### +*.log + +# Maven # +######### +target + +# Maven shade +############# +*dependency-reduced-pom.xml -- Gitblit v1.9.1