Fix intellij configuration

This commit is contained in:
René Pfeuffer
2024-09-09 16:33:21 +02:00
parent 9f07e10d92
commit d2b5b2ee97
2 changed files with 23 additions and 4 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

@@ -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>