.gitignore 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  1. target/
  2. !.mvn/wrapper/maven-wrapper.jar
  3. !**/src/main/**
  4. !**/src/test/**
  5. ### STS ###
  6. .apt_generated
  7. .classpath
  8. .factorypath
  9. .project
  10. .settings
  11. .springBeans
  12. .sts4-cache
  13. ### IntelliJ IDEA ###
  14. .idea
  15. *.iws
  16. *.iml
  17. *.ipr
  18. ### NetBeans ###
  19. /nbproject/private/
  20. /nbbuild/
  21. /dist/
  22. /nbdist/
  23. /.nb-gradle/
  24. build/
  25. ### VS Code ###
  26. .vscode/
  27. ### Java template
  28. # Compiled class file
  29. *.class
  30. # Log file
  31. *.log
  32. # BlueJ files
  33. *.ctxt
  34. # Mobile Tools for Java (J2ME)
  35. .mtj.tmp/
  36. # Package Files #
  37. *.jar
  38. *.war
  39. *.nar
  40. *.ear
  41. *.zip
  42. *.tar.gz
  43. *.rar
  44. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  45. hs_err_pid*
  46. ### Maven template
  47. pom.xml.tag
  48. pom.xml.releaseBackup
  49. pom.xml.versionsBackup
  50. pom.xml.next
  51. release.properties
  52. dependency-reduced-pom.xml
  53. buildNumber.properties
  54. .mvn/timing.properties
  55. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  56. .mvn/wrapper/maven-wrapper.jar
  57. ### VisualStudioCode template
  58. .vscode/*
  59. !.vscode/settings.json
  60. !.vscode/tasks.json
  61. !.vscode/launch.json
  62. !.vscode/extensions.json
  63. *.code-workspace
  64. # Local History for Visual Studio Code
  65. .history/
  66. ### JetBrains template
  67. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  68. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  69. # User-specific stuff
  70. .idea/**/workspace.xml
  71. .idea/**/tasks.xml
  72. .idea/**/usage.statistics.xml
  73. .idea/**/dictionaries
  74. .idea/**/shelf
  75. # Generated files
  76. .idea/**/contentModel.xml
  77. # Sensitive or high-churn files
  78. .idea/**/dataSources/
  79. .idea/**/dataSources.ids
  80. .idea/**/dataSources.local.xml
  81. .idea/**/sqlDataSources.xml
  82. .idea/**/dynamic.xml
  83. .idea/**/uiDesigner.xml
  84. .idea/**/dbnavigator.xml
  85. # Gradle
  86. .idea/**/gradle.xml
  87. .idea/**/libraries
  88. # Gradle and Maven with auto-import
  89. # When using Gradle or Maven with auto-import, you should exclude module files,
  90. # since they will be recreated, and may cause churn. Uncomment if using
  91. # auto-import.
  92. # .idea/artifacts
  93. # .idea/compiler.xml
  94. # .idea/jarRepositories.xml
  95. # .idea/modules.xml
  96. # .idea/*.iml
  97. # .idea/modules
  98. # *.iml
  99. # *.ipr
  100. # CMake
  101. cmake-build-*/
  102. # Mongo Explorer plugin
  103. .idea/**/mongoSettings.xml
  104. # File-based project format
  105. # IntelliJ
  106. out/
  107. # mpeltonen/sbt-idea plugin
  108. .idea_modules/
  109. # JIRA plugin
  110. atlassian-ide-plugin.xml
  111. # Cursive Clojure plugin
  112. .idea/replstate.xml
  113. # Crashlytics plugin (for Android Studio and IntelliJ)
  114. com_crashlytics_export_strings.xml
  115. crashlytics.properties
  116. crashlytics-build.properties
  117. fabric.properties
  118. # Editor-based Rest Client
  119. .idea/httpRequests
  120. # Android studio 3.1+ serialized cache file
  121. .idea/caches/build_file_checksums.ser
  122. ### Eclipse template
  123. .metadata
  124. bin/
  125. tmp/
  126. *.tmp
  127. *.bak
  128. *.swp
  129. *~.nib
  130. local.properties
  131. .settings/
  132. .loadpath
  133. .recommenders
  134. # External tool builders
  135. .externalToolBuilders/
  136. # Locally stored "Eclipse launch configurations"
  137. *.launch
  138. # PyDev specific (Python IDE for Eclipse)
  139. *.pydevproject
  140. # CDT-specific (C/C++ Development Tooling)
  141. .cproject
  142. # CDT- autotools
  143. .autotools
  144. # Java annotation processor (APT)
  145. # PDT-specific (PHP Development Tools)
  146. .buildpath
  147. # sbteclipse plugin
  148. .target
  149. # Tern plugin
  150. .tern-project
  151. # TeXlipse plugin
  152. .texlipse
  153. # STS (Spring Tool Suite)
  154. # Code Recommenders
  155. .recommenders/
  156. # Annotation Processing
  157. .apt_generated/
  158. .apt_generated_test/
  159. # Scala IDE specific (Scala & Java development for Eclipse)
  160. .cache-main
  161. .scala_dependencies
  162. .worksheet
  163. # Uncomment this line if you wish to ignore the project description file.
  164. # Typically, this file would be tracked if it contains build/dependency configurations:
  165. #.project
  166. ### Example user template template
  167. ### Example user template
  168. # IntelliJ project files
  169. out
  170. gen
  171. ### VisualStudio template
  172. ## Ignore Visual Studio temporary files, build results, and
  173. ## files generated by popular Visual Studio add-ons.
  174. ##
  175. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  176. # User-specific files
  177. *.rsuser
  178. *.suo
  179. *.user
  180. *.userosscache
  181. *.sln.docstates
  182. # User-specific files (MonoDevelop/Xamarin Studio)
  183. *.userprefs
  184. # Mono auto generated files
  185. mono_crash.*
  186. # Build results
  187. [Dd]ebug/
  188. [Dd]ebugPublic/
  189. [Rr]elease/
  190. [Rr]eleases/
  191. x64/
  192. x86/
  193. [Ww][Ii][Nn]32/
  194. [Aa][Rr][Mm]/
  195. [Aa][Rr][Mm]64/
  196. bld/
  197. [Bb]in/
  198. [Oo]bj/
  199. [Ll]og/
  200. [Ll]ogs/
  201. # Visual Studio 2015/2017 cache/options directory
  202. .vs/
  203. # Uncomment if you have tasks that create the project's static files in wwwroot
  204. #wwwroot/
  205. # Visual Studio 2017 auto generated files
  206. Generated\ Files/
  207. # MSTest test Results
  208. [Tt]est[Rr]esult*/
  209. [Bb]uild[Ll]og.*
  210. # NUnit
  211. *.VisualState.xml
  212. TestResult.xml
  213. nunit-*.xml
  214. # Build Results of an ATL Project
  215. [Dd]ebugPS/
  216. [Rr]eleasePS/
  217. dlldata.c
  218. # Benchmark Results
  219. BenchmarkDotNet.Artifacts/
  220. # .NET Core
  221. project.lock.json
  222. project.fragment.lock.json
  223. artifacts/
  224. # ASP.NET Scaffolding
  225. ScaffoldingReadMe.txt
  226. # StyleCop
  227. StyleCopReport.xml
  228. # Files built by Visual Studio
  229. *_i.c
  230. *_p.c
  231. *_h.h
  232. *.ilk
  233. *.meta
  234. *.obj
  235. *.iobj
  236. *.pch
  237. *.pdb
  238. *.ipdb
  239. *.pgc
  240. *.pgd
  241. *.rsp
  242. *.sbr
  243. *.tlb
  244. *.tli
  245. *.tlh
  246. *.tmp_proj
  247. *_wpftmp.csproj
  248. *.vspscc
  249. *.vssscc
  250. .builds
  251. *.pidb
  252. *.svclog
  253. *.scc
  254. # Chutzpah Test files
  255. _Chutzpah*
  256. # Visual C++ cache files
  257. ipch/
  258. *.aps
  259. *.ncb
  260. *.opendb
  261. *.opensdf
  262. *.sdf
  263. *.cachefile
  264. *.VC.db
  265. *.VC.VC.opendb
  266. # Visual Studio profiler
  267. *.psess
  268. *.vsp
  269. *.vspx
  270. *.sap
  271. # Visual Studio Trace Files
  272. *.e2e
  273. # TFS 2012 Local Workspace
  274. $tf/
  275. # Guidance Automation Toolkit
  276. *.gpState
  277. # ReSharper is a .NET coding add-in
  278. _ReSharper*/
  279. *.[Rr]e[Ss]harper
  280. *.DotSettings.user
  281. # TeamCity is a build add-in
  282. _TeamCity*
  283. # DotCover is a Code Coverage Tool
  284. *.dotCover
  285. # AxoCover is a Code Coverage Tool
  286. .axoCover/*
  287. !.axoCover/settings.json
  288. # Coverlet is a free, cross platform Code Coverage Tool
  289. coverage*.json
  290. coverage*.xml
  291. coverage*.info
  292. # Visual Studio code coverage results
  293. *.coverage
  294. *.coveragexml
  295. # NCrunch
  296. _NCrunch_*
  297. .*crunch*.local.xml
  298. nCrunchTemp_*
  299. # MightyMoose
  300. *.mm.*
  301. AutoTest.Net/
  302. # Web workbench (sass)
  303. .sass-cache/
  304. # Installshield output folder
  305. [Ee]xpress/
  306. # DocProject is a documentation generator add-in
  307. DocProject/buildhelp/
  308. DocProject/Help/*.HxT
  309. DocProject/Help/*.HxC
  310. DocProject/Help/*.hhc
  311. DocProject/Help/*.hhk
  312. DocProject/Help/*.hhp
  313. DocProject/Help/Html2
  314. DocProject/Help/html
  315. # Click-Once directory
  316. publish/
  317. # Publish Web Output
  318. *.[Pp]ublish.xml
  319. *.azurePubxml
  320. # Note: Comment the next line if you want to checkin your web deploy settings,
  321. # but database connection strings (with potential passwords) will be unencrypted
  322. *.pubxml
  323. *.publishproj
  324. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  325. # checkin your Azure Web App publish settings, but sensitive information contained
  326. # in these scripts will be unencrypted
  327. PublishScripts/
  328. # NuGet Packages
  329. *.nupkg
  330. # NuGet Symbol Packages
  331. *.snupkg
  332. # The packages folder can be ignored because of Package Restore
  333. **/[Pp]ackages/*
  334. # except build/, which is used as an MSBuild target.
  335. !**/[Pp]ackages/build/
  336. # Uncomment if necessary however generally it will be regenerated when needed
  337. #!**/[Pp]ackages/repositories.config
  338. # NuGet v3's project.json files produces more ignorable files
  339. *.nuget.props
  340. *.nuget.targets
  341. # Microsoft Azure Build Output
  342. csx/
  343. *.build.csdef
  344. # Microsoft Azure Emulator
  345. ecf/
  346. rcf/
  347. # Windows Store app package directories and files
  348. AppPackages/
  349. BundleArtifacts/
  350. Package.StoreAssociation.xml
  351. _pkginfo.txt
  352. *.appx
  353. *.appxbundle
  354. *.appxupload
  355. # Visual Studio cache files
  356. # files ending in .cache can be ignored
  357. *.[Cc]ache
  358. # but keep track of directories ending in .cache
  359. !?*.[Cc]ache/
  360. # Others
  361. ClientBin/
  362. ~$*
  363. *~
  364. *.dbmdl
  365. *.dbproj.schemaview
  366. *.jfm
  367. *.pfx
  368. *.publishsettings
  369. orleans.codegen.cs
  370. # Including strong name files can present a security risk
  371. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  372. #*.snk
  373. # Since there are multiple workflows, uncomment next line to ignore bower_components
  374. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  375. #bower_components/
  376. # RIA/Silverlight projects
  377. Generated_Code/
  378. # Backup & report files from converting an old project file
  379. # to a newer Visual Studio version. Backup files are not needed,
  380. # because we have git ;-)
  381. _UpgradeReport_Files/
  382. Backup*/
  383. UpgradeLog*.XML
  384. UpgradeLog*.htm
  385. ServiceFabricBackup/
  386. *.rptproj.bak
  387. # SQL Server files
  388. *.mdf
  389. *.ldf
  390. *.ndf
  391. # Business Intelligence projects
  392. *.rdl.data
  393. *.bim.layout
  394. *.bim_*.settings
  395. *.rptproj.rsuser
  396. *- [Bb]ackup.rdl
  397. *- [Bb]ackup ([0-9]).rdl
  398. *- [Bb]ackup ([0-9][0-9]).rdl
  399. # Microsoft Fakes
  400. FakesAssemblies/
  401. # GhostDoc plugin setting file
  402. *.GhostDoc.xml
  403. # Node.js Tools for Visual Studio
  404. .ntvs_analysis.dat
  405. node_modules/
  406. # Visual Studio 6 build log
  407. *.plg
  408. # Visual Studio 6 workspace options file
  409. *.opt
  410. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  411. *.vbw
  412. # Visual Studio LightSwitch build output
  413. **/*.HTMLClient/GeneratedArtifacts
  414. **/*.DesktopClient/GeneratedArtifacts
  415. **/*.DesktopClient/ModelManifest.xml
  416. **/*.Server/GeneratedArtifacts
  417. **/*.Server/ModelManifest.xml
  418. _Pvt_Extensions
  419. # Paket dependency manager
  420. .paket/paket.exe
  421. paket-files/
  422. # FAKE - F# Make
  423. .fake/
  424. # CodeRush personal settings
  425. .cr/personal
  426. # Python Tools for Visual Studio (PTVS)
  427. __pycache__/
  428. *.pyc
  429. # Cake - Uncomment if you are using it
  430. # tools/**
  431. # !tools/packages.config
  432. # Tabs Studio
  433. *.tss
  434. # Telerik's JustMock configuration file
  435. *.jmconfig
  436. # BizTalk build output
  437. *.btp.cs
  438. *.btm.cs
  439. *.odx.cs
  440. *.xsd.cs
  441. # OpenCover UI analysis results
  442. OpenCover/
  443. # Azure Stream Analytics local run output
  444. ASALocalRun/
  445. # MSBuild Binary and Structured Log
  446. *.binlog
  447. # NVidia Nsight GPU debugger configuration file
  448. *.nvuser
  449. # MFractors (Xamarin productivity tool) working folder
  450. .mfractor/
  451. # Local History for Visual Studio
  452. .localhistory/
  453. # BeatPulse healthcheck temp database
  454. healthchecksdb
  455. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  456. MigrationBackup/
  457. # Ionide (cross platform F# VS Code tools) working folder
  458. .ionide/
  459. # Fody - auto-generated XML schema
  460. FodyWeavers.xsd
  461. /.mvn/
  462. /mvnw
  463. /mvnw.cmd