mirror of
https://github.com/st-tu-dresden-praktikum/swt23w23
synced 2024-07-19 21:04:36 +02:00
Add licensing section to readme
This commit is contained in:
parent
bac025fd0a
commit
811f1e5c03
48
readme.adoc
48
readme.adoc
|
@ -1,20 +1,16 @@
|
|||
// SPDX-License-Identifier: Apache-2.0
|
||||
// SPDX-FileCopyrightText: 2015-2016 Oliver Drotbohm
|
||||
// SPDX-FileCopyrightText: 2019-2022 Martin Morgenstern
|
||||
// SPDX-FileCopyrightText: 2023 swt23w23
|
||||
image:https://github.com/st-tu-dresden-praktikum/swt23w23/workflows/CI%20build/badge.svg["CI Build", link="https://github.com/st-tu-dresden-praktikum/swt23w23/actions"]
|
||||
image:https://img.shields.io/badge/SonarQube-checked-blue?logo=sonarqube["SonarQube status", link="https://st-lab-ci.inf.tu-dresden.de/sonarqube/"]
|
||||
|
||||
// Hi there! We've already included some generally useful information in here.
|
||||
// Feel free to edit the first section to add a short description of your task and your project.
|
||||
= Catering Mampf
|
||||
|
||||
= Kickstart
|
||||
|
||||
The kickstart module is a template project to bootstrap the Java project in the Software Engineering lab.
|
||||
Each group's repository is initialized with this template.
|
||||
It contains the following features:
|
||||
|
||||
* a skeleton Java 17 web application based on Spring Boot and Salespoint framework (see `src/main/java` and `src/test/java`)
|
||||
* Asciidoc documentation templates in `src/main/asciidoc`
|
||||
This repository contains the source code and documentation for the
|
||||
*Softwaretechnologie-Projekt* (software technology project)
|
||||
at the *Technische Universität Dresden*
|
||||
from group 23 in the winter semester 2023/2024.
|
||||
|
||||
== Important documents in this repo
|
||||
|
||||
|
@ -45,3 +41,35 @@ The repository follows the standard Maven project layout. Nearly all artifacts a
|
|||
== How to package the application?
|
||||
|
||||
* Run `./mvnw clean package`. The packaged application (a JAR in `target/`) can be run with `java -jar $jarName`.
|
||||
|
||||
== License
|
||||
|
||||
This repository is link:https://reuse.software/[REUSE] compliant.
|
||||
To get the most correct licensing information,
|
||||
please consult the link:https://reuse.software/spec/[REUSE specification]
|
||||
or use a tool that parses it.
|
||||
Please note that the copyright owner _swt23w23_ in the SPDX file copyright text means
|
||||
that the copyright is owned by one or more members of the project.
|
||||
Please consult the git history of the file in question to determine the specific individuals.
|
||||
In doubt, the file is owned by all authors listed in link:AUTHORS.txt[`AUTHORS.txt`].
|
||||
|
||||
Generally, all files written by the project members is licensed under the terms of the
|
||||
link:LICENSES/AGPL-3.0-or-later.txt[GNU Affero General Public License, Version 3] (or any later version).
|
||||
Code inherited from the link:https://github.com/st-tu-dresden/kickstart[kickstart template]
|
||||
is licensed under the terms of the link:LICENSES/Apache-2.0.txt[Apache License, Version 2].
|
||||
Inherited files that were modified by us “carry prominent notices stating that [we] changed the files”
|
||||
(as required by Section 4 (a) of the Apache License, Version 2)
|
||||
in the form of an additional SPDX file copyright text with _swt23w23_ as owner.
|
||||
They are also licensed under the combined licenses `Apache-2.0 AND AGPL-3.0-or-later`.
|
||||
Please see link:https://spdx.github.io/spdx-spec/v2.3/SPDX-license-expressions/[Annex D of the SPDX specification]
|
||||
on how to parse this expression.
|
||||
|
||||
Smaller parts might be licensed under other licenses,
|
||||
compatible with the GNU Affero General Public License, Version 3.
|
||||
|
||||
The frontend uses link:https://getbootstrap.com/[Bootstrap],
|
||||
which is licensed under the terms of the link:https://github.com/twbs/bootstrap/blob/v5.3.2/LICENSE[MIT License].
|
||||
|
||||
As all used licenses are compatible with the GNU Affero General Public License, Version 3,
|
||||
which is also the most strict of all used licenses,
|
||||
the final package is also covered by its terms.
|
||||
|
|
Loading…
Reference in a new issue