.gitignore for JDeveloper

6 ignore rules for JDeveloper, ready to copy into your repository.

Oracle's IDE for Java development

The complete .gitignore for JDeveloper

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:27:46 UTC
# Technologies: JDeveloper

### JDeveloper ###
.data/
temp/
classes/
deploy/
javadoc/
cwallet.sso.lck

What these JDeveloper rules actually ignore

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

General

Pattern What it ignores
.data/ default application storage directory used by the IDE Performance Cache feature
temp/ used for ADF styles caching
classes/ default output directories
deploy/ General
javadoc/ General
cwallet.sso.lck lock file, a part of Oracle Credential Store Framework

How to use this .gitignore for JDeveloper

  1. Copy the JDeveloper 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 IDE .gitignore templates

See every IDE template