.gitignore (1558B)
1 # 2 # Eclipse 3 # 4 5 .metadata 6 tmp/ 7 *.tmp 8 *.bak 9 *.swp 10 *~.nib 11 local.properties 12 .settings/ 13 .loadpath 14 .recommenders 15 16 # Eclipse Core 17 .project 18 19 # External tool builders 20 .externalToolBuilders/ 21 22 # PyDev specific (Python IDE for Eclipse) 23 *.pydevproject 24 25 # CDT-specific (C/C++ Development Tooling) 26 .cproject 27 28 # CDT- autotools 29 .autotools 30 31 # JDT-specific (Eclipse Java Development Tools) 32 .classpath 33 34 # Java annotation processor (APT) 35 .factorypath 36 37 # PDT-specific (PHP Development Tools) 38 .buildpath 39 40 # sbteclipse plugin 41 .target 42 43 # Tern plugin 44 .tern-project 45 46 # TeXlipse plugin 47 .texlipse 48 49 # STS (Spring Tool Suite) 50 .springBeans 51 52 # Code Recommenders 53 .recommenders/ 54 55 # Annotation Processing 56 .apt_generated/ 57 .apt_generated_test/ 58 59 # Scala IDE specific (Scala & Java development for Eclipse) 60 .cache-main 61 .scala_dependencies 62 .worksheet 63 64 # Uncomment this line if you wish to ignore the project description file. 65 # Typically, this file would be tracked if it contains build/dependency configurations: 66 #.project 67 68 69 # 70 # Java 71 # 72 73 # Compiled class file 74 *.class 75 76 # Log file 77 *.log 78 79 # BlueJ files 80 *.ctxt 81 82 # Mobile Tools for Java (J2ME) 83 .mtj.tmp/ 84 85 # Package Files # 86 *.jar 87 *.war 88 *.nar 89 *.ear 90 *.zip 91 *.tar.gz 92 *.rar 93 94 # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 95 hs_err_pid* 96 97 98 # 99 # Maven 100 # 101 102 target/ 103 pom.xml.tag 104 pom.xml.releaseBackup 105 pom.xml.versionsBackup 106 pom.xml.next 107 release.properties 108 dependency-reduced-pom.xml 109 buildNumber.properties 110 .mvn/timing.properties 111 # https://github.com/takari/maven-wrapper#usage-without-binary-jar 112 .mvn/wrapper/maven-wrapper.jar