Skip to content

Commit

Permalink
Align .gitignore to the one used by Spring 3.4.0 (#416)
Browse files Browse the repository at this point in the history
* chore: aligned .gitignore to the one used by Spring 3.4.0-SNAPSHOT

* chore: Restored some cases covered by the current .gitignore
  • Loading branch information
gsartori authored Nov 4, 2024
1 parent 8e5876d commit 7e28266
Showing 1 changed file with 37 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,42 @@
Thumbs.db
.DS_Store
### Gradle ###
.gradle
build/
target/
out/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
*.iws
.project
.settings
.classpath
.factorypath
out/
!**/src/main/**/out/
!**/src/test/**/out/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

### Other ###
Thumbs.db
.DS_Store
target/

0 comments on commit 7e28266

Please sign in to comment.