.gitignore 11 KB

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