Skip to content

Commit

Permalink
java: gitignore to remove noises
Browse files Browse the repository at this point in the history
  • Loading branch information
enghitalo committed Oct 22, 2024
1 parent bfc6d56 commit b81d481
Show file tree
Hide file tree
Showing 4 changed files with 119 additions and 0 deletions.
26 changes: 26 additions & 0 deletions java/act/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Ignore build directories
/build/
/target/

# Ignore IDE specific files
/.idea/
/*.iml
/*.ipr
/*.iws

# Ignore Maven specific files
/.mvn/
/.mvn/wrapper/maven-wrapper.jar

# Ignore temporary files
*.log
*.tmp
*.swp
*.pid
*.out
*.pid.lock
*.act.*

# Ignore OS specific files
.DS_Store
Thumbs.db
31 changes: 31 additions & 0 deletions java/micronaut/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Micronaut specific files
/build/
/target/
/out/
/.gradle/

# IntelliJ IDEA
/.idea/
/*.iml

# Eclipse
/.project
/.classpath
/.settings/

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

# VS Code
/.vscode/

# Logs
*.log

# OS generated files
.DS_Store
Thumbs.db
31 changes: 31 additions & 0 deletions kotlin/ktor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Micronaut specific files
/build/
/target/
/out/
/.gradle/

# IntelliJ IDEA
/.idea/
/*.iml

# Eclipse
/.project
/.classpath
/.settings/

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

# VS Code
/.vscode/

# Logs
*.log

# OS generated files
.DS_Store
Thumbs.db
31 changes: 31 additions & 0 deletions kotlin/spring/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Micronaut specific files
/build/
/target/
/out/
/.gradle/

# IntelliJ IDEA
/.idea/
/*.iml

# Eclipse
/.project
/.classpath
/.settings/

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

# VS Code
/.vscode/

# Logs
*.log

# OS generated files
.DS_Store
Thumbs.db

0 comments on commit b81d481

Please sign in to comment.