Stavros Kanarakis | d860357 | 2019-03-21 10:50:44 +0200 | [diff] [blame] | 1 | # Created by https://www.gitignore.io/api/java,maven,intellij |
| 2 | # Edit at https://www.gitignore.io/?templates=java,maven,intellij |
| 3 | |
| 4 | ### Intellij ### |
| 5 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 6 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 7 | |
| 8 | # User-specific stuff |
| 9 | .idea/**/workspace.xml |
| 10 | .idea/**/tasks.xml |
| 11 | .idea/**/usage.statistics.xml |
| 12 | .idea/**/dictionaries |
| 13 | .idea/**/shelf |
| 14 | |
| 15 | # Generated files |
| 16 | .idea/**/contentModel.xml |
| 17 | |
| 18 | # Sensitive or high-churn files |
| 19 | .idea/**/dataSources/ |
| 20 | .idea/**/dataSources.ids |
| 21 | .idea/**/dataSources.local.xml |
| 22 | .idea/**/sqlDataSources.xml |
| 23 | .idea/**/dynamic.xml |
| 24 | .idea/**/uiDesigner.xml |
| 25 | .idea/**/dbnavigator.xml |
| 26 | |
| 27 | .idea |
| 28 | *.iml |
| 29 | |
| 30 | # Gradle |
| 31 | .idea/**/gradle.xml |
| 32 | .idea/**/libraries |
| 33 | |
| 34 | # Gradle and Maven with auto-import |
| 35 | # When using Gradle or Maven with auto-import, you should exclude module files, |
| 36 | # since they will be recreated, and may cause churn. Uncomment if using |
| 37 | # auto-import. |
| 38 | # .idea/modules.xml |
| 39 | # .idea/*.iml |
| 40 | # .idea/modules |
| 41 | |
| 42 | # CMake |
| 43 | cmake-build-*/ |
| 44 | |
| 45 | # Mongo Explorer plugin |
| 46 | .idea/**/mongoSettings.xml |
| 47 | |
| 48 | # File-based project format |
| 49 | *.iws |
| 50 | |
| 51 | # IntelliJ |
| 52 | out/ |
| 53 | |
| 54 | # mpeltonen/sbt-idea plugin |
| 55 | .idea_modules/ |
| 56 | |
| 57 | # JIRA plugin |
| 58 | atlassian-ide-plugin.xml |
| 59 | |
| 60 | # Cursive Clojure plugin |
| 61 | .idea/replstate.xml |
| 62 | |
| 63 | # Crashlytics plugin (for Android Studio and IntelliJ) |
| 64 | com_crashlytics_export_strings.xml |
| 65 | crashlytics.properties |
| 66 | crashlytics-build.properties |
| 67 | fabric.properties |
| 68 | |
| 69 | # Editor-based Rest Client |
| 70 | .idea/httpRequests |
| 71 | |
| 72 | # Android studio 3.1+ serialized cache file |
| 73 | .idea/caches/build_file_checksums.ser |
| 74 | |
| 75 | ### Intellij Patch ### |
| 76 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 |
| 77 | |
| 78 | # *.iml |
| 79 | # modules.xml |
| 80 | # .idea/misc.xml |
| 81 | # *.ipr |
| 82 | |
| 83 | # Sonarlint plugin |
| 84 | .idea/sonarlint |
| 85 | |
| 86 | ### Java ### |
| 87 | # Compiled class file |
| 88 | *.class |
| 89 | |
| 90 | # Log file |
| 91 | *.log |
| 92 | |
| 93 | # BlueJ files |
| 94 | *.ctxt |
| 95 | |
| 96 | # Mobile Tools for Java (J2ME) |
| 97 | .mtj.tmp/ |
| 98 | |
| 99 | # Package Files # |
| 100 | *.jar |
| 101 | *.war |
| 102 | *.nar |
| 103 | *.ear |
| 104 | *.zip |
| 105 | *.tar.gz |
| 106 | *.rar |
| 107 | |
| 108 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml |
| 109 | hs_err_pid* |
| 110 | |
| 111 | ### Maven ### |
| 112 | target/ |
| 113 | pom.xml.tag |
| 114 | pom.xml.releaseBackup |
| 115 | pom.xml.versionsBackup |
| 116 | pom.xml.next |
| 117 | release.properties |
| 118 | dependency-reduced-pom.xml |
| 119 | buildNumber.properties |
| 120 | .mvn/timing.properties |
| 121 | .mvn/wrapper/maven-wrapper.jar |
| 122 | |
| 123 | # End of https://www.gitignore.io/api/java,maven,intellij |
| 124 | |
Ekko Chang | 5e7f427 | 2019-07-26 03:26:08 +0000 | [diff] [blame] | 125 | .project |
| 126 | .settings/ |