mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
Simon Bruder
bac025fd0a
This finally makes the licensing under AGPL-3.0-or-later explicit after I got the okay from the kickstart source owners. This also checks the REUSE compliance in a pre commit hook, and therefore also in CI.
63 lines
705 B
Plaintext
63 lines
705 B
Plaintext
# SPDX-License-Identifier: Apache-2.0 AND AGPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: 2014 Oliver Drotbohm
|
|
# SPDX-FileCopyrightText: 2018-2021 Martin Morgenstern
|
|
# SPDX-FileCopyrightText: 2023 swt23w23
|
|
# Java and Maven
|
|
*.class
|
|
*.jar
|
|
target/
|
|
|
|
# Un-ignore maven wrapper jar
|
|
!/.mvn/wrapper/maven-wrapper.jar
|
|
|
|
# Eclipse
|
|
bin/
|
|
.settings/
|
|
.project
|
|
.classpath
|
|
.factorypath
|
|
|
|
# Eclipse STS plugin
|
|
.springBeans
|
|
|
|
# IntelliJ
|
|
out/
|
|
.idea/
|
|
*.iml
|
|
|
|
# VS Code
|
|
.vscode/
|
|
|
|
# MagicDraw
|
|
*.mdzip.bak
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# H2 database files
|
|
*.mv.db
|
|
*.h2.db
|
|
|
|
# Misc
|
|
hs_err_*.log
|
|
~$*
|
|
|
|
# Direnv
|
|
.direnv
|
|
.envrc.private
|
|
|
|
# TeX
|
|
*.aux
|
|
*.fdb_latexmk
|
|
*.fls
|
|
*.log
|
|
*.nav
|
|
*.out
|
|
*.pdf
|
|
*.snm
|
|
*.synctex.gz
|
|
*.toc
|
|
*.xdv
|