.gitignore for JBoss

16 ignore rules for JBoss, ready to copy into your repository.

Application server

The complete .gitignore for JBoss

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:32:20 UTC
# Technologies: JBoss

### JBoss ###
jboss/server/all/deploy/project.ext
jboss/server/default/deploy/project.ext
jboss/server/minimal/deploy/project.ext
jboss/server/all/log/*.log
jboss/server/all/tmp/**/*
jboss/server/all/data/**/*
jboss/server/all/work/**/*
jboss/server/default/log/*.log
jboss/server/default/tmp/**/*
jboss/server/default/data/**/*
jboss/server/default/work/**/*
jboss/server/minimal/log/*.log
jboss/server/minimal/tmp/**/*
jboss/server/minimal/data/**/*
jboss/server/minimal/work/**/*
*.DEPLOYED

What these JBoss rules actually ignore

Every pattern below, and why it belongs in your .gitignore.

General

Pattern What it ignores
jboss/server/all/deploy/project.ext General
jboss/server/default/deploy/project.ext General
jboss/server/minimal/deploy/project.ext General
jboss/server/all/log/*.log General
jboss/server/all/tmp/**/* General
jboss/server/all/data/**/* General
jboss/server/all/work/**/* General
jboss/server/default/log/*.log General
jboss/server/default/tmp/**/* General
jboss/server/default/data/**/* General
jboss/server/default/work/**/* General
jboss/server/minimal/log/*.log General
jboss/server/minimal/tmp/**/* General
jboss/server/minimal/data/**/* General
jboss/server/minimal/work/**/* General
*.DEPLOYED General

How to use this .gitignore for JBoss

  1. Copy the JBoss rules above, or download the file directly.
  2. Create a file named .gitignore at the root of your Git repository and paste the rules into it.
  3. If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
  4. Commit the .gitignore so everyone on the team shares the same rules.

Other Application Server .gitignore templates

See every Application Server template