.gitignore 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  1. # Created by https://www.gitignore.io/api/java,linux,macos,latex,maven,gradle,windows,eclipse,intellij,netbeans,visualstudio
  2. # Edit at https://www.gitignore.io/?templates=java,linux,macos,latex,maven,gradle,windows,eclipse,intellij,netbeans,visualstudio
  3. ### Eclipse ###
  4. .metadata
  5. bin/
  6. tmp/
  7. *.tmp
  8. *.bak
  9. *.swp
  10. *~.nib
  11. local.properties
  12. .settings/
  13. .loadpath
  14. .recommenders
  15. # External tool builders
  16. .externalToolBuilders/
  17. # Locally stored "Eclipse launch configurations"
  18. *.launch
  19. # PyDev specific (Python IDE for Eclipse)
  20. *.pydevproject
  21. # CDT-specific (C/C++ Development Tooling)
  22. .cproject
  23. # CDT- autotools
  24. .autotools
  25. # Java annotation processor (APT)
  26. .factorypath
  27. # PDT-specific (PHP Development Tools)
  28. .buildpath
  29. # sbteclipse plugin
  30. .target
  31. # Tern plugin
  32. .tern-project
  33. # TeXlipse plugin
  34. .texlipse
  35. # STS (Spring Tool Suite)
  36. .springBeans
  37. # Code Recommenders
  38. .recommenders/
  39. # Annotation Processing
  40. .apt_generated/
  41. # Scala IDE specific (Scala & Java development for Eclipse)
  42. .cache-main
  43. .scala_dependencies
  44. .worksheet
  45. ### Eclipse Patch ###
  46. # Eclipse Core
  47. .project
  48. ### IntelliJ IDEA ###
  49. .idea
  50. *.iws
  51. *.iml
  52. *.ipr
  53. # JDT-specific (Eclipse Java Development Tools)
  54. .classpath
  55. # Annotation Processing
  56. .apt_generated
  57. .sts4-cache/
  58. ### Intellij ###
  59. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  60. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  61. # User-specific stuff
  62. #.idea
  63. # Generated files
  64. *.idea/**/contentModel.xml
  65. # Sensitive or high-churn files
  66. *.idea/**/dataSources/
  67. *.idea/**/dataSources.ids
  68. *.idea/**/dataSources.local.xml
  69. *.idea/**/sqlDataSources.xml
  70. *.idea/**/dynamic.xml
  71. *.idea/**/uiDesigner.xml
  72. *.idea/**/dbnavigator.xml
  73. # Gradle
  74. *.idea/**/gradle.xml
  75. *.idea/**/libraries
  76. # Gradle and Maven with auto-import
  77. # When using Gradle or Maven with auto-import, you should exclude module files,
  78. # since they will be recreated, and may cause churn. Uncomment if using
  79. # auto-import.
  80. # *.idea/modules.xml
  81. # *.idea/*.iml
  82. # *.idea/modules
  83. # *.iml
  84. # *.ipr
  85. # CMake
  86. cmake-build-*/
  87. # Mongo Explorer plugin
  88. *.idea/**/mongoSettings.xml
  89. # File-based project format
  90. *.iws
  91. # IntelliJ
  92. out/
  93. # mpeltonen/sbt-idea plugin
  94. *.idea_modules/
  95. # JIRA plugin
  96. atlassian-ide-plugin.xml
  97. # Cursive Clojure plugin
  98. *.idea/replstate.xml
  99. # Crashlytics plugin (for Android Studio and IntelliJ)
  100. com_crashlytics_export_strings.xml
  101. crashlytics.properties
  102. crashlytics-build.properties
  103. fabric.properties
  104. # Editor-based Rest Client
  105. *.idea/httpRequests
  106. # Android studio 3.1+ serialized cache file
  107. *.idea/caches/build_file_checksums.ser
  108. ### Intellij Patch ###
  109. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  110. # *.iml
  111. # modules.xml
  112. # *.idea/misc.xml
  113. # *.ipr
  114. # Sonarlint plugin
  115. *.idea/**/sonarlint/
  116. # SonarQube Plugin
  117. *.idea/**/sonarIssues.xml
  118. # Markdown Navigator plugin
  119. *.idea/**/markdown-navigator.xml
  120. *.idea/**/markdown-navigator/
  121. ### Java ###
  122. # Compiled class file
  123. *.class
  124. # Log file
  125. *.log
  126. # BlueJ files
  127. *.ctxt
  128. # Mobile Tools for Java (J2ME)
  129. .mtj.tmp/
  130. # Package Files #
  131. *.jar
  132. *.war
  133. *.nar
  134. *.ear
  135. *.zip
  136. *.tar.gz
  137. *.rar
  138. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  139. hs_err_pid*
  140. ### LaTeX ###
  141. ## Core latex/pdflatex auxiliary files:
  142. *.aux
  143. *.lof
  144. *.lot
  145. *.fls
  146. *.out
  147. *.toc
  148. *.fmt
  149. *.fot
  150. *.cb
  151. *.cb2
  152. .*.lb
  153. ## Intermediate documents:
  154. *.dvi
  155. *.xdv
  156. *-converted-to.*
  157. # these rules might exclude image files for figures etc.
  158. # *.ps
  159. # *.eps
  160. # *.pdf
  161. ## Generated if empty string is given at "Please type another file name for output:"
  162. .pdf
  163. ## Bibliography auxiliary files (bibtex/biblatex/biber):
  164. *.bbl
  165. *.bcf
  166. *.blg
  167. *-blx.aux
  168. *-blx.bib
  169. *.run.xml
  170. ## Build tool auxiliary files:
  171. *.fdb_latexmk
  172. *.synctex
  173. *.synctex(busy)
  174. *.synctex.gz
  175. *.synctex.gz(busy)
  176. *.pdfsync
  177. ## Build tool directories for auxiliary files
  178. # latexrun
  179. latex.out/
  180. ## Auxiliary and intermediate files from other packages:
  181. # algorithms
  182. *.alg
  183. *.loa
  184. # achemso
  185. acs-*.bib
  186. # amsthm
  187. *.thm
  188. # beamer
  189. *.nav
  190. *.pre
  191. *.snm
  192. *.vrb
  193. # changes
  194. *.soc
  195. # comment
  196. *.cut
  197. # cprotect
  198. *.cpt
  199. # elsarticle (documentclass of Elsevier journals)
  200. *.spl
  201. # endnotes
  202. *.ent
  203. # fixme
  204. *.lox
  205. # feynmf/feynmp
  206. *.mf
  207. *.mp
  208. *.t[1-9]
  209. *.t[1-9][0-9]
  210. *.tfm
  211. #(r)(e)ledmac/(r)(e)ledpar
  212. *.end
  213. *.?end
  214. *.[1-9]
  215. *.[1-9][0-9]
  216. *.[1-9][0-9][0-9]
  217. *.[1-9]R
  218. *.[1-9][0-9]R
  219. *.[1-9][0-9][0-9]R
  220. *.eledsec[1-9]
  221. *.eledsec[1-9]R
  222. *.eledsec[1-9][0-9]
  223. *.eledsec[1-9][0-9]R
  224. *.eledsec[1-9][0-9][0-9]
  225. *.eledsec[1-9][0-9][0-9]R
  226. # glossaries
  227. *.acn
  228. *.acr
  229. *.glg
  230. *.glo
  231. *.gls
  232. *.glsdefs
  233. # uncomment this for glossaries-extra (will ignore makeindex's style files!)
  234. # *.ist
  235. # gnuplottex
  236. *-gnuplottex-*
  237. # gregoriotex
  238. *.gaux
  239. *.gtex
  240. # htlatex
  241. *.4ct
  242. *.4tc
  243. *.idv
  244. *.lg
  245. *.trc
  246. *.xref
  247. # hyperref
  248. *.brf
  249. # knitr
  250. *-concordance.tex
  251. # TODO Comment the next line if you want to keep your tikz graphics files
  252. *.tikz
  253. *-tikzDictionary
  254. # listings
  255. *.lol
  256. # luatexja-ruby
  257. *.ltjruby
  258. # makeidx
  259. *.idx
  260. *.ilg
  261. *.ind
  262. # minitoc
  263. *.maf
  264. *.mlf
  265. *.mlt
  266. *.mtc[0-9]*
  267. *.slf[0-9]*
  268. *.slt[0-9]*
  269. *.stc[0-9]*
  270. # minted
  271. _minted*
  272. *.pyg
  273. # morewrites
  274. *.mw
  275. # nomencl
  276. *.nlg
  277. *.nlo
  278. *.nls
  279. # pax
  280. *.pax
  281. # pdfpcnotes
  282. *.pdfpc
  283. # sagetex
  284. *.sagetex.sage
  285. *.sagetex.py
  286. *.sagetex.scmd
  287. # scrwfile
  288. *.wrt
  289. # sympy
  290. *.sout
  291. *.sympy
  292. sympy-plots-for-*.tex/
  293. # pdfcomment
  294. *.upa
  295. *.upb
  296. # pythontex
  297. *.pytxcode
  298. pythontex-files-*/
  299. # tcolorbox
  300. *.listing
  301. # thmtools
  302. *.loe
  303. # TikZ & PGF
  304. *.dpth
  305. *.md5
  306. *.auxlock
  307. # todonotes
  308. *.tdo
  309. # vhistory
  310. *.hst
  311. *.ver
  312. # easy-todo
  313. *.lod
  314. # xcolor
  315. *.xcp
  316. # xmpincl
  317. *.xmpi
  318. # xindy
  319. *.xdy
  320. # xypic precompiled matrices
  321. *.xyc
  322. # endfloat
  323. *.ttt
  324. *.fff
  325. # Latexian
  326. TSWLatexianTemp*
  327. ## Editors:
  328. # WinEdt
  329. *.sav
  330. # Texpad
  331. .texpadtmp
  332. # LyX
  333. *.lyx~
  334. # Kile
  335. *.backup
  336. # KBibTeX
  337. *~[0-9]*
  338. # auto folder when using emacs and auctex
  339. ./auto/*
  340. *.el
  341. # expex forward references with \gathertags
  342. *-tags.tex
  343. # standalone packages
  344. *.sta
  345. ### LaTeX Patch ###
  346. # glossaries
  347. *.glstex
  348. ### Linux ###
  349. *~
  350. # temporary files which can be created if a process still has a handle open of a deleted file
  351. .fuse_hidden*
  352. # KDE directory preferences
  353. .directory
  354. # Linux trash folder which might appear on any partition or disk
  355. .Trash-*
  356. # .nfs files are created when an open file is removed but is still being accessed
  357. .nfs*
  358. ### macOS ###
  359. # General
  360. .DS_Store
  361. .AppleDouble
  362. .LSOverride
  363. # Icon must end with two \r
  364. Icon
  365. # Thumbnails
  366. ._*
  367. # Files that might appear in the root of a volume
  368. .DocumentRevisions-V100
  369. .fseventsd
  370. .Spotlight-V100
  371. .TemporaryItems
  372. .Trashes
  373. .VolumeIcon.icns
  374. .com.apple.timemachine.donotpresent
  375. # Directories potentially created on remote AFP share
  376. .AppleDB
  377. .AppleDesktop
  378. Network Trash Folder
  379. Temporary Items
  380. .apdisk
  381. ### Maven ###
  382. target/
  383. pom.xml.tag
  384. pom.xml.releaseBackup
  385. pom.xml.versionsBackup
  386. pom.xml.next
  387. release.properties
  388. dependency-reduced-pom.xml
  389. buildNumber.properties
  390. .mvn/timing.properties
  391. .mvn/wrapper/maven-wrapper.jar
  392. .flattened-pom.xml
  393. ### NetBeans ###
  394. **/nbproject/private/
  395. **/nbproject/Makefile-*.mk
  396. **/nbproject/Package-*.bash
  397. build/
  398. nbbuild/
  399. dist/
  400. nbdist/
  401. .nb-gradle/
  402. ### Windows ###
  403. # Windows thumbnail cache files
  404. Thumbs.db
  405. Thumbs.db:encryptable
  406. ehthumbs.db
  407. ehthumbs_vista.db
  408. # Dump file
  409. *.stackdump
  410. # Folder config file
  411. [Dd]esktop.ini
  412. # Recycle Bin used on file shares
  413. $RECYCLE.BIN/
  414. # Windows Installer files
  415. *.cab
  416. *.msi
  417. *.msix
  418. *.msm
  419. *.msp
  420. # Windows shortcuts
  421. *.lnk
  422. ### Gradle ###
  423. .gradle
  424. # Ignore Gradle GUI config
  425. gradle-app.setting
  426. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  427. !gradle-wrapper.jar
  428. # Cache of project
  429. .gradletasknamecache
  430. # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
  431. # gradle/wrapper/gradle-wrapper.properties
  432. ### Gradle Patch ###
  433. **/build/
  434. ### VisualStudio ###
  435. ## Ignore Visual Studio temporary files, build results, and
  436. ## files generated by popular Visual Studio add-ons.
  437. ##
  438. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  439. # User-specific files
  440. *.rsuser
  441. *.suo
  442. *.user
  443. *.userosscache
  444. *.sln.docstates
  445. # User-specific files (MonoDevelop/Xamarin Studio)
  446. *.userprefs
  447. # Mono auto generated files
  448. mono_crash.*
  449. # Build results
  450. [Dd]ebug/
  451. [Dd]ebugPublic/
  452. [Rr]elease/
  453. [Rr]eleases/
  454. x64/
  455. x86/
  456. [Aa][Rr][Mm]/
  457. [Aa][Rr][Mm]64/
  458. bld/
  459. [Bb]in/
  460. [Oo]bj/
  461. [Ll]og/
  462. # Visual Studio 2015/2017 cache/options directory
  463. .vs/
  464. # Uncomment if you have tasks that create the project's static files in wwwroot
  465. #wwwroot/
  466. # Visual Studio 2017 auto generated files
  467. Generated\ Files/
  468. # MSTest test Results
  469. [Tt]est[Rr]esult*/
  470. [Bb]uild[Ll]og.*
  471. # NUnit
  472. *.VisualState.xml
  473. TestResult.xml
  474. nunit-*.xml
  475. # Build Results of an ATL Project
  476. [Dd]ebugPS/
  477. [Rr]eleasePS/
  478. dlldata.c
  479. # Benchmark Results
  480. BenchmarkDotNet.Artifacts/
  481. # .NET Core
  482. project.lock.json
  483. project.fragment.lock.json
  484. artifacts/
  485. # StyleCop
  486. StyleCopReport.xml
  487. # Files built by Visual Studio
  488. *_i.c
  489. *_p.c
  490. *_h.h
  491. *.ilk
  492. *.obj
  493. *.iobj
  494. *.pch
  495. *.pdb
  496. *.ipdb
  497. *.pgc
  498. *.pgd
  499. *.rsp
  500. *.sbr
  501. *.tlb
  502. *.tli
  503. *.tlh
  504. *.tmp_proj
  505. *_wpftmp.csproj
  506. *.vspscc
  507. *.vssscc
  508. .builds
  509. *.pidb
  510. *.svclog
  511. *.scc
  512. # Chutzpah Test files
  513. _Chutzpah*
  514. # Visual C++ cache files
  515. ipch/
  516. *.aps
  517. *.ncb
  518. *.opendb
  519. *.opensdf
  520. *.sdf
  521. *.cachefile
  522. *.VC.db
  523. *.VC.VC.opendb
  524. # Visual Studio profiler
  525. *.psess
  526. *.vsp
  527. *.vspx
  528. *.sap
  529. # Visual Studio Trace Files
  530. *.e2e
  531. # TFS 2012 Local Workspace
  532. $tf/
  533. # Guidance Automation Toolkit
  534. *.gpState
  535. # ReSharper is a .NET coding add-in
  536. _ReSharper*/
  537. *.[Rr]e[Ss]harper
  538. *.DotSettings.user
  539. # JustCode is a .NET coding add-in
  540. .JustCode
  541. # TeamCity is a build add-in
  542. _TeamCity*
  543. # DotCover is a Code Coverage Tool
  544. *.dotCover
  545. # AxoCover is a Code Coverage Tool
  546. .axoCover/*
  547. !.axoCover/settings.json
  548. # Visual Studio code coverage results
  549. *.coverage
  550. *.coveragexml
  551. # NCrunch
  552. _NCrunch_*
  553. .*crunch*.local.xml
  554. nCrunchTemp_*
  555. # MightyMoose
  556. *.mm.*
  557. AutoTest.Net/
  558. # Web workbench (sass)
  559. .sass-cache/
  560. # Installshield output folder
  561. [Ee]xpress/
  562. # DocProject is a documentation generator add-in
  563. DocProject/buildhelp/
  564. DocProject/Help/*.HxT
  565. DocProject/Help/*.HxC
  566. DocProject/Help/*.hhc
  567. DocProject/Help/*.hhk
  568. DocProject/Help/*.hhp
  569. DocProject/Help/Html2
  570. DocProject/Help/html
  571. # Click-Once directory
  572. publish/
  573. # Publish Web Output
  574. *.[Pp]ublish.xml
  575. *.azurePubxml
  576. # Note: Comment the next line if you want to checkin your web deploy settings,
  577. # but database connection strings (with potential passwords) will be unencrypted
  578. *.pubxml
  579. *.publishproj
  580. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  581. # checkin your Azure Web App publish settings, but sensitive information contained
  582. # in these scripts will be unencrypted
  583. PublishScripts/
  584. # NuGet Packages
  585. *.nupkg
  586. # NuGet Symbol Packages
  587. *.snupkg
  588. # The packages folder can be ignored because of Package Restore
  589. **/[Pp]ackages/*
  590. # except build/, which is used as an MSBuild target.
  591. !**/[Pp]ackages/build/
  592. # Uncomment if necessary however generally it will be regenerated when needed
  593. #!**/[Pp]ackages/repositories.config
  594. # NuGet v3's project.json files produces more ignorable files
  595. *.nuget.props
  596. *.nuget.targets
  597. # Microsoft Azure Build Output
  598. csx/
  599. *.build.csdef
  600. # Microsoft Azure Emulator
  601. ecf/
  602. rcf/
  603. # Windows Store app package directories and files
  604. AppPackages/
  605. BundleArtifacts/
  606. Package.StoreAssociation.xml
  607. _pkginfo.txt
  608. *.appx
  609. *.appxbundle
  610. *.appxupload
  611. # Visual Studio cache files
  612. # files ending in .cache can be ignored
  613. *.[Cc]ache
  614. # but keep track of directories ending in .cache
  615. !?*.[Cc]ache/
  616. # Others
  617. ClientBin/
  618. ~$*
  619. *.dbmdl
  620. *.dbproj.schemaview
  621. *.jfm
  622. *.pfx
  623. *.publishsettings
  624. orleans.codegen.cs
  625. # Including strong name files can present a security risk
  626. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  627. #*.snk
  628. # Since there are multiple workflows, uncomment next line to ignore bower_components
  629. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  630. #bower_components/
  631. # RIA/Silverlight projects
  632. Generated_Code/
  633. # Backup & report files from converting an old project file
  634. # to a newer Visual Studio version. Backup files are not needed,
  635. # because we have git ;-)
  636. _UpgradeReport_Files/
  637. Backup*/
  638. UpgradeLog*.XML
  639. UpgradeLog*.htm
  640. ServiceFabricBackup/
  641. *.rptproj.bak
  642. # SQL Server files
  643. *.mdf
  644. *.ldf
  645. *.ndf
  646. # Business Intelligence projects
  647. *.rdl.data
  648. *.bim.layout
  649. *.bim_*.settings
  650. *.rptproj.rsuser
  651. *- [Bb]ackup.rdl
  652. *- [Bb]ackup ([0-9]).rdl
  653. *- [Bb]ackup ([0-9][0-9]).rdl
  654. # Microsoft Fakes
  655. FakesAssemblies/
  656. # GhostDoc plugin setting file
  657. *.GhostDoc.xml
  658. # Node.js Tools for Visual Studio
  659. .ntvs_analysis.dat
  660. node_modules/
  661. # Visual Studio 6 build log
  662. *.plg
  663. # Visual Studio 6 workspace options file
  664. *.opt
  665. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  666. *.vbw
  667. # Visual Studio LightSwitch build output
  668. **/*.HTMLClient/GeneratedArtifacts
  669. **/*.DesktopClient/GeneratedArtifacts
  670. **/*.DesktopClient/ModelManifest.xml
  671. **/*.Server/GeneratedArtifacts
  672. **/*.Server/ModelManifest.xml
  673. _Pvt_Extensions
  674. # Paket dependency manager
  675. .paket/paket.exe
  676. paket-files/
  677. # FAKE - F# Make
  678. .fake/
  679. # CodeRush personal settings
  680. .cr/personal
  681. # Python Tools for Visual Studio (PTVS)
  682. __pycache__/
  683. *.pyc
  684. # Cake - Uncomment if you are using it
  685. # tools/**
  686. # !tools/packages.config
  687. # Tabs Studio
  688. *.tss
  689. # Telerik's JustMock configuration file
  690. *.jmconfig
  691. # BizTalk build output
  692. *.btp.cs
  693. *.btm.cs
  694. *.odx.cs
  695. *.xsd.cs
  696. # OpenCover UI analysis results
  697. OpenCover/
  698. # Azure Stream Analytics local run output
  699. ASALocalRun/
  700. # MSBuild Binary and Structured Log
  701. *.binlog
  702. # NVidia Nsight GPU debugger configuration file
  703. *.nvuser
  704. # MFractors (Xamarin productivity tool) working folder
  705. .mfractor/
  706. # Local History for Visual Studio
  707. .localhistory/
  708. # BeatPulse healthcheck temp database
  709. healthchecksdb
  710. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  711. MigrationBackup/
  712. # pdf doc
  713. docs/Architekturbeschreibung/Architekturbeschreibung.pdf
  714. # End of https://www.gitignore.io/api/java,linux,macos,latex,maven,gradle,windows,eclipse,intellij,netbeans,visualstudio
  715. # Created by https://www.gitignore.io/api/gradle
  716. # Edit at https://www.gitignore.io/?templates=gradle
  717. ### Gradle ###
  718. .gradle
  719. build/
  720. # Ignore Gradle GUI config
  721. gradle-app.setting
  722. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  723. !gradle-wrapper.jar
  724. # Cache of project
  725. .gradletasknamecache
  726. # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
  727. # gradle/wrapper/gradle-wrapper.properties
  728. ### Gradle Patch ###
  729. **/build/
  730. # End of https://www.gitignore.io/api/gradle
  731. ../database.mv.db
  732. ../database.trace.db
  733. ../database.lock.db
  734. database.mv.db
  735. database.trace.db
  736. database.lock.db