Browse Source

Fix license in header & footer

tags/8.7.0.41497
Philippe Perrin 3 years ago
parent
commit
a36d2c54fc

+ 1
- 1
README.md View File

@@ -77,6 +77,6 @@ Then open the root file `build.gradle` as a project in Intellij or Eclipse.
License
-------

Copyright 2008-2020 SonarSource.
Copyright 2008-2021 SonarSource.

Licensed under the [GNU Lesser General Public License, Version 3.0](https://www.gnu.org/licenses/lgpl.txt)

+ 1
- 1
server/sonar-docs/src/components/Footer.tsx View File

@@ -32,7 +32,7 @@ export default function Footer() {
src="https://licensebuttons.net/l/by-nc/3.0/us/88x31.png"
/>
</a>
© 2008-2020, SonarSource S.A, Switzerland. Except where otherwise noted, content in this space
© 2008-2021, SonarSource S.A, Switzerland. Except where otherwise noted, content in this space
is licensed under a{' '}
<a
href="https://creativecommons.org/licenses/by-nc/3.0/us/"

+ 1
- 1
server/sonar-web/__mocks__/lodash.ts View File

@@ -1,6 +1,6 @@
/*
* SonarQube
* Copyright (C) 2009-2019 SonarSource SA
* Copyright (C) 2009-2021 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or

+ 1
- 1
server/sonar-web/__mocks__/react-virtualized.tsx View File

@@ -1,6 +1,6 @@
/*
* SonarQube
* Copyright (C) 2009-2019 SonarSource SA
* Copyright (C) 2009-2021 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or

+ 1
- 1
server/sonar-web/__mocks__/react-virtualized/dist/commonjs/AutoSizer.ts View File

@@ -1,6 +1,6 @@
/*
* SonarQube
* Copyright (C) 2009-2019 SonarSource SA
* Copyright (C) 2009-2021 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or

+ 1
- 1
server/sonar-web/__mocks__/react-virtualized/dist/commonjs/WindowScroller.ts View File

@@ -1,6 +1,6 @@
/*
* SonarQube
* Copyright (C) 2009-2019 SonarSource SA
* Copyright (C) 2009-2021 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or

+ 1
- 1
server/sonar-web/build.gradle View File

@@ -63,7 +63,7 @@ yarn_audit {
dependsOn(yarn)
}

def sources = fileTree(dir: "src") + fileTree(dir: "scripts") + fileTree(dir: "config")
def sources = fileTree(dir: "src") + fileTree(dir: "scripts") + fileTree(dir: "config") + fileTree(dir: "__mocks__")

task licenseCheckWeb(type: com.hierynomus.gradle.license.tasks.LicenseCheck) {
source = sources

+ 0
- 19
server/sonar-web/src/main/js/helpers/__tests__/security-standard-test.ts View File

@@ -18,25 +18,6 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import { Standards } from '../../types/security';
/*
* SonarQube
* Copyright (C) 2009-2020 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import {
renderCWECategory,
renderOwaspTop10Category,

+ 0
- 19
server/sonar-web/src/main/js/helpers/urls.ts View File

@@ -18,25 +18,6 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import { pick } from 'lodash';
/*
* SonarQube
* Copyright (C) 2009-2020 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import { getBaseUrl, Location } from 'sonar-ui-common/helpers/urls';
import { getProfilePath } from '../apps/quality-profiles/utils';
import { BranchLike, BranchParameters } from '../types/branch-like';

Loading…
Cancel
Save