Gitignore Java
Git ignore file for Java project with explanations.
.gitignore is a special text file with patterns to exclude compiled, cached and generated files.
# Compiled class files
*.class
# Maven
target/
If project uses Gradle then the following lines should be added:
# Ignore Gradle project-specific cache directory
.gradle
# Ignore Gradle build output directory
build