Skip to content

Commit 81aab5c

Browse files
author
S L
committed
adjust license header
1 parent 9dbac37 commit 81aab5c

37 files changed

+150
-102
lines changed

src/main/java/pl/project13/jgit/DescribeCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of git-commit-id-plugin by Konrad Malawski <[email protected]>
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
33
*
44
* git-commit-id-plugin is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU Lesser General Public License as published by

src/main/java/pl/project13/jgit/DescribeResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of git-commit-id-plugin by Konrad Malawski <[email protected]>
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
33
*
44
* git-commit-id-plugin is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU Lesser General Public License as published by

src/main/java/pl/project13/jgit/JGitCommon.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of git-commit-id-plugin by Konrad Malawski <[email protected]>
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
33
*
44
* git-commit-id-plugin is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU Lesser General Public License as published by

src/main/java/pl/project13/jgit/dummy/DatedRevTag.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
3+
*
4+
* git-commit-id-plugin is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* git-commit-id-plugin is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with git-commit-id-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
*/
17+
118
package pl.project13.jgit.dummy;
219

320
import org.eclipse.jgit.lib.AnyObjectId;

src/main/java/pl/project13/maven/git/GitCommitIdMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of git-commit-id-plugin by Konrad Malawski <[email protected]>
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
33
*
44
* git-commit-id-plugin is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU Lesser General Public License as published by

src/main/java/pl/project13/maven/git/GitDataProvider.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
3+
*
4+
* git-commit-id-plugin is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* git-commit-id-plugin is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with git-commit-id-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
*/
17+
118
package pl.project13.maven.git;
219

320
import org.apache.maven.plugin.MojoExecutionException;

src/main/java/pl/project13/maven/git/GitDescribeConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of git-commit-id-plugin by Konrad Malawski <[email protected]>
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
33
*
44
* git-commit-id-plugin is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU Lesser General Public License as published by

src/main/java/pl/project13/maven/git/GitDirLocator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of git-commit-id-plugin by Konrad Malawski <[email protected]>
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
33
*
44
* git-commit-id-plugin is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU Lesser General Public License as published by

src/main/java/pl/project13/maven/git/GitRepositoryState.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file is part of git-commit-id-plugin by Konrad Malawski <[email protected]>
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
33
*
44
* git-commit-id-plugin is free software: you can redistribute it and/or modify
55
* it under the terms of the GNU Lesser General Public License as published by
@@ -14,7 +14,6 @@
1414
* You should have received a copy of the GNU Lesser General Public License
1515
* along with git-commit-id-plugin. If not, see <http://www.gnu.org/licenses/>.
1616
*/
17-
1817
package pl.project13.maven.git;
1918

2019
//import org.codehaus.jackson.annotate.JsonWriteNullProperties;

src/main/java/pl/project13/maven/git/JGitProvider.java

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/*
2+
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski <[email protected]>
3+
*
4+
* git-commit-id-plugin is free software: you can redistribute it and/or modify
5+
* it under the terms of the GNU Lesser General Public License as published by
6+
* the Free Software Foundation, either version 3 of the License, or
7+
* (at your option) any later version.
8+
*
9+
* git-commit-id-plugin is distributed in the hope that it will be useful,
10+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
* GNU General Public License for more details.
13+
*
14+
* You should have received a copy of the GNU Lesser General Public License
15+
* along with git-commit-id-plugin. If not, see <http://www.gnu.org/licenses/>.
16+
*/
17+
118
package pl.project13.maven.git;
219

320
import com.google.common.annotations.VisibleForTesting;

0 commit comments

Comments
 (0)