Skip to content

Commit

Permalink
license
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Jan 18, 2022
1 parent d814026 commit 48335fb
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ tasks.jacocoTestReport {
license {
header = rootProject.file("license/HEADER.txt")
ext["year"] = "2018-" + Calendar.getInstance().get(Calendar.YEAR)
ext["name"] = "Alexey Sosnoviy <[email protected]>, Nikita Gryzlov <[email protected]>"
ext["name"] = "Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]>"
ext["project"] = "1c-syntax utils"
strictCheck = true
mapping("java", "SLASHSTAR_STYLE")
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/github/_1c_syntax/utils/Absolute.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* This file is a part of 1c-syntax utils.
*
* Copyright © 2018-2021
* Alexey Sosnoviy <[email protected]>, Nikita Gryzlov <[email protected]> and contributors
* Copyright © 2018-2022
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* This file is a part of 1c-syntax utils.
*
* Copyright © 2018-2021
* Alexey Sosnoviy <[email protected]>, Nikita Gryzlov <[email protected]> and contributors
* Copyright © 2018-2022
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/github/_1c_syntax/utils/Lazy.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* This file is a part of 1c-syntax utils.
*
* Copyright © 2018-2021
* Alexey Sosnoviy <[email protected]>, Nikita Gryzlov <[email protected]> and contributors
* Copyright © 2018-2022
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
Expand Down
21 changes: 21 additions & 0 deletions src/main/java/com/github/_1c_syntax/utils/StringInterner.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*
* This file is a part of 1c-syntax utils.
*
* Copyright © 2018-2022
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
* 1c-syntax utils 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.0 of the License, or (at your option) any later version.
*
* 1c-syntax utils 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 1c-syntax utils.
*/
package com.github._1c_syntax.utils;

import java.util.Map;
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/com/github/_1c_syntax/utils/AbsoluteTest.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* This file is a part of 1c-syntax utils.
*
* Copyright © 2018-2021
* Alexey Sosnoviy <[email protected]>, Nikita Gryzlov <[email protected]> and contributors
* Copyright © 2018-2022
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
Expand Down
21 changes: 21 additions & 0 deletions src/test/java/com/github/_1c_syntax/utils/StringInternerTest.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
/*
* This file is a part of 1c-syntax utils.
*
* Copyright © 2018-2022
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
*
* SPDX-License-Identifier: LGPL-3.0-or-later
*
* 1c-syntax utils 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.0 of the License, or (at your option) any later version.
*
* 1c-syntax utils 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 1c-syntax utils.
*/
package com.github._1c_syntax.utils;

import org.junit.jupiter.api.BeforeEach;
Expand Down

0 comments on commit 48335fb

Please sign in to comment.