Skip to content

Commit

Permalink
.gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Relucent committed Oct 18, 2019
1 parent e314bb7 commit b26c817
Show file tree
Hide file tree
Showing 25 changed files with 1,275 additions and 288 deletions.
64 changes: 51 additions & 13 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,51 @@
/target/
/*/target/
!.mvn/wrapper/maven-wrapper.jar


### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
# Compile files
*.class

# Package Files
*.jar
*.war
*.ear
*.nar
*.zip
*.tar
*.tar.gz
*.rar

# Maven
target/
*.ser
*.ec

# J2ME
.mtj.tmp/

# Eclipse
.classpath
.project
.settings/
.metadata/
.factorypath
.springBeans

# IntelliJ Idea
.idea/
out/
*.ipr
*.iws
*.iml

# BlueJ Files
*.ctxt

# OS X
.DS_Store

# Window
Thumbs.db

# Virtual Machine Crash Logs
hs_err_pid*

# Log File
*.log
*.log.*
51 changes: 51 additions & 0 deletions spring-boot-example-activemq/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Compile files
*.class

# Package Files
*.jar
*.war
*.ear
*.nar
*.zip
*.tar
*.tar.gz
*.rar

# Maven
target/
*.ser
*.ec

# J2ME
.mtj.tmp/

# Eclipse
.classpath
.project
.settings/
.metadata/
.factorypath
.springBeans

# IntelliJ Idea
.idea/
out/
*.ipr
*.iws
*.iml

# BlueJ Files
*.ctxt

# OS X
.DS_Store

# Window
Thumbs.db

# Virtual Machine Crash Logs
hs_err_pid*

# Log File
*.log
*.log.*
76 changes: 51 additions & 25 deletions spring-boot-example-actuator/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,51 @@
/target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
# Compile files
*.class

# Package Files
*.jar
*.war
*.ear
*.nar
*.zip
*.tar
*.tar.gz
*.rar

# Maven
target/
*.ser
*.ec

# J2ME
.mtj.tmp/

# Eclipse
.classpath
.project
.settings/
.metadata/
.factorypath
.springBeans

# IntelliJ Idea
.idea/
out/
*.ipr
*.iws
*.iml

# BlueJ Files
*.ctxt

# OS X
.DS_Store

# Window
Thumbs.db

# Virtual Machine Crash Logs
hs_err_pid*

# Log File
*.log
*.log.*
76 changes: 51 additions & 25 deletions spring-boot-example-banner/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,51 @@
/target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
# Compile files
*.class

# Package Files
*.jar
*.war
*.ear
*.nar
*.zip
*.tar
*.tar.gz
*.rar

# Maven
target/
*.ser
*.ec

# J2ME
.mtj.tmp/

# Eclipse
.classpath
.project
.settings/
.metadata/
.factorypath
.springBeans

# IntelliJ Idea
.idea/
out/
*.ipr
*.iws
*.iml

# BlueJ Files
*.ctxt

# OS X
.DS_Store

# Window
Thumbs.db

# Virtual Machine Crash Logs
hs_err_pid*

# Log File
*.log
*.log.*
76 changes: 51 additions & 25 deletions spring-boot-example-command-line-runner/.gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,51 @@
/target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
# Compile files
*.class

# Package Files
*.jar
*.war
*.ear
*.nar
*.zip
*.tar
*.tar.gz
*.rar

# Maven
target/
*.ser
*.ec

# J2ME
.mtj.tmp/

# Eclipse
.classpath
.project
.settings/
.metadata/
.factorypath
.springBeans

# IntelliJ Idea
.idea/
out/
*.ipr
*.iws
*.iml

# BlueJ Files
*.ctxt

# OS X
.DS_Store

# Window
Thumbs.db

# Virtual Machine Crash Logs
hs_err_pid*

# Log File
*.log
*.log.*
Loading

0 comments on commit b26c817

Please sign in to comment.