devops | b69e006 | 2018-04-08 15:30:00 +0530 | [diff] [blame] | 1 | # Created by https://www.gitignore.io/api/java,macos,eclipse,java-web |
| 2 | |
| 3 | ### Eclipse ### |
| 4 | |
| 5 | .metadata |
| 6 | bin/ |
| 7 | tmp/ |
| 8 | *.tmp |
| 9 | *.bak |
| 10 | *.swp |
| 11 | *~.nib |
| 12 | local.properties |
| 13 | .settings/ |
| 14 | .loadpath |
| 15 | .recommenders |
| 16 | |
| 17 | # External tool builders |
| 18 | .externalToolBuilders/ |
| 19 | |
| 20 | # Locally stored "Eclipse launch configurations" |
| 21 | *.launch |
| 22 | |
| 23 | # PyDev specific (Python IDE for Eclipse) |
| 24 | *.pydevproject |
| 25 | |
| 26 | # CDT-specific (C/C++ Development Tooling) |
| 27 | .cproject |
| 28 | |
| 29 | # Java annotation processor (APT) |
| 30 | .factorypath |
| 31 | |
| 32 | # PDT-specific (PHP Development Tools) |
| 33 | .buildpath |
| 34 | |
| 35 | # sbteclipse plugin |
| 36 | .target |
| 37 | |
| 38 | # Tern plugin |
| 39 | .tern-project |
| 40 | |
| 41 | # TeXlipse plugin |
| 42 | .texlipse |
| 43 | |
| 44 | # STS (Spring Tool Suite) |
| 45 | .springBeans |
| 46 | |
| 47 | # Code Recommenders |
| 48 | .recommenders/ |
| 49 | |
| 50 | # Scala IDE specific (Scala & Java development for Eclipse) |
| 51 | .cache-main |
| 52 | .scala_dependencies |
| 53 | .worksheet |
| 54 | |
| 55 | ### Eclipse Patch ### |
| 56 | # Eclipse Core |
| 57 | .project |
| 58 | |
| 59 | # JDT-specific (Eclipse Java Development Tools) |
| 60 | .classpath |
| 61 | |
| 62 | ### Java ### |
| 63 | # Compiled class file |
| 64 | *.class |
| 65 | |
| 66 | # Log file |
| 67 | *.log |
| 68 | |
| 69 | # BlueJ files |
| 70 | *.ctxt |
| 71 | |
| 72 | # Mobile Tools for Java (J2ME) |
| 73 | .mtj.tmp/ |
| 74 | |
| 75 | # Package Files # |
| 76 | *.jar |
| 77 | *.war |
| 78 | *.ear |
| 79 | *.zip |
| 80 | *.tar.gz |
| 81 | *.rar |
| 82 | |
| 83 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml |
| 84 | hs_err_pid* |
| 85 | |
| 86 | ### Java-Web ### |
| 87 | ## ignoring target file |
| 88 | target/ |
| 89 | |
| 90 | ### macOS ### |
| 91 | *.DS_Store |
| 92 | .AppleDouble |
| 93 | .LSOverride |
| 94 | |
| 95 | # Icon must end with two \r |
| 96 | Icon |
| 97 | |
| 98 | # Thumbnails |
| 99 | ._* |
| 100 | |
| 101 | # Files that might appear in the root of a volume |
| 102 | .DocumentRevisions-V100 |
| 103 | .fseventsd |
| 104 | .Spotlight-V100 |
| 105 | .TemporaryItems |
| 106 | .Trashes |
| 107 | .VolumeIcon.icns |
| 108 | .com.apple.timemachine.donotpresent |
| 109 | |
| 110 | # Directories potentially created on remote AFP share |
| 111 | .AppleDB |
| 112 | .AppleDesktop |
| 113 | Network Trash Folder |
| 114 | Temporary Items |
| 115 | .apdisk |
Ravi | 3d8afda | 2020-07-30 21:08:58 +0530 | [diff] [blame] | 116 | |