diff options
| author | Mitsuo Tokumori <[email protected]> | 2022-06-23 06:43:02 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2022-06-23 06:43:02 -0500 |
| commit | b6f9f8a1edc37a4a03ef16ee48b3cd4a782bc3fc (patch) | |
| tree | 165123565a884b3ae10763f8420aa5c964f60053 /.gitignore | |
| download | springboot_restapi-master.tar.gz springboot_restapi-master.tar.bz2 springboot_restapi-master.zip | |
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..68fad0c --- /dev/null +++ b/.gitignore @@ -0,0 +1,76 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +# From: https://ucsb-cs48.github.io/javatopics/gitignore_maven/ + +# Maven (from: https://github.com/github/gitignore/blob/master/Maven.gitignore) + +target/ +pom.xml.tag +pom.xml.releaseBackup +pom.xml.versionsBackup +pom.xml.next +release.properties +dependency-reduced-pom.xml +buildNumber.properties +.mvn/timing.properties +# https://github.com/takari/maven-wrapper#usage-without-binary-jar +.mvn/wrapper/maven-wrapper.jar + +# Java (from: https://github.com/github/gitignore/blob/master/Java.gitignore) + +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + |
