Change to GNU Affero General Public License v3.0

This commit is contained in:
Rene Pfeuffer
2024-09-24 09:42:07 +02:00
parent f95579c102
commit e6433d01d1
4046 changed files with 42639 additions and 73310 deletions

View File

@@ -59,12 +59,12 @@ title: Intellij IDEA Configuration
* Editor / Copyright / Copyright Profiles
* Add Profile
* Name: SCM-MIT
* Copyright text: *see LICENSE.txt in the main directory*
* Regex: MIT License
* Name: SCM-AGPL
* Copyright text: see https://www.gnu.org/licenses/
* Regex: GNU Affero General Public License
* Editor / Copyright
* Default project copyright: SCM-MIT
* Default project copyright: SCM-AGPL
* Editor / Copyright / Formatting / XML
* Use custom formatting options

View File

@@ -135,7 +135,7 @@ diff -r a988f4cfb7ab src/main/resources/META-INF/scm/plugin.xml
```json
{
"name": "@scm-manager/name-of-plugin",
"license": "MIT",
"license": "AGPL-3.0-only",
"main": "src/main/js/index.tsx",
"scripts": {
"build": "ui-scripts plugin",

View File

@@ -67,7 +67,7 @@ A quick look at the files and directories you'll see in a SCM-Manager project.
5. **`CHANGELOG.md`**: All notable changes to this project will be documented in this file.
6. **`LICENSE`**: This project is licensed under the MIT license.
6. **`LICENSE`**: This project is licensed under AGPL-3.0-only.
7. **`package.json`**: Here you can find the dependency/build configuration and dependencies for the frontend.

View File

@@ -0,0 +1,19 @@
<#if licenseFirst??>
${licenseFirst}*
</#if>
${licensePrefix}Copyright (c) 2020 - present Cloudogu GmbH
${licensePrefix}
${licensePrefix}This program is free software: you can redistribute it and/or modify it under
${licensePrefix}the terms of the GNU Affero General Public License as published by the Free
${licensePrefix}Software Foundation, version 3.
${licensePrefix}
${licensePrefix}This program is distributed in the hope that it will be useful, but WITHOUT
${licensePrefix}ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
${licensePrefix}FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
${licensePrefix}details.
${licensePrefix}
${licensePrefix}You should have received a copy of the GNU Affero General Public License
${licensePrefix}along with this program. If not, see https://www.gnu.org/licenses/.
<#if licenseLast??>
${licenseLast}
</#if>

View File

@@ -1,28 +0,0 @@
<#if licenseFirst??>
${licenseFirst}*
</#if>
${licensePrefix}MIT License
${licensePrefix}
${licensePrefix}Copyright (c) 2020-present Cloudogu GmbH and Contributors
${licensePrefix}
${licensePrefix}Permission is hereby granted, free of charge, to any person obtaining a copy
${licensePrefix}of this software and associated documentation files (the "Software"), to deal
${licensePrefix}in the Software without restriction, including without limitation the rights
${licensePrefix}to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
${licensePrefix}copies of the Software, and to permit persons to whom the Software is
${licensePrefix}furnished to do so, subject to the following conditions:
${licensePrefix}
${licensePrefix}The above copyright notice and this permission notice shall be included in all
${licensePrefix}copies or substantial portions of the Software.
${licensePrefix}
${licensePrefix}THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
${licensePrefix}IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
${licensePrefix}FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
${licensePrefix}AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
${licensePrefix}LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
${licensePrefix}OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
${licensePrefix}SOFTWARE.
${licensePrefix}
<#if licenseLast??>
${licenseLast}
</#if>