diff --git a/.checkstyle b/.checkstyle
index 1971d4ec..d628d369 100644
--- a/.checkstyle
+++ b/.checkstyle
@@ -1,10 +1,10 @@
-
+
-
+
diff --git a/.github/.checkstyle/java.header b/.github/.checkstyle/java.header
index 4f304ed8..c8bdf753 100644
--- a/.github/.checkstyle/java.header
+++ b/.github/.checkstyle/java.header
@@ -1,16 +1,16 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
\ No newline at end of file
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 99ee2b46..cfbc2f66 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,9 +2,9 @@
In general pull requests and support for open issues is always welcome!
## Project layout
-This project is a multi-module Maven project. It consists of the following modules:
-- [core](core) (`git-commit-id-plugin-core`): The core framework of the plugin
-- [maven](maven) (`git-commit-id-plugin`): The actual plugin, which depends on the `core` module
+This project is a Maven project which currently consists of the following:
+- [git-commit-id-plugin-core](https://github.com/git-commit-id/git-commit-id-plugin-core) (`git-commit-id-plugin-core`): The core framework of the plugin
+- [git-commit-id-maven-plugin](https://github.com/git-commit-id/git-commit-id-maven-plugin) (`git-commit-id-maven-plugin`): The actual (maven) plugin, which depends on the `core` module
To build the project:
1. Install Maven
diff --git a/README.md b/README.md
index d4e38a1f..e87d9e7a 100644
--- a/README.md
+++ b/README.md
@@ -3,10 +3,10 @@ maven git commit id plugin
[![Build Status](https://secure.travis-ci.org/git-commit-id/git-commit-id-maven-plugin.svg?branch=master)](https://travis-ci.org/github/git-commit-id/git-commit-id-maven-plugin)
[![Coverage Status](https://coveralls.io/repos/github/git-commit-id/git-commit-id-maven-plugin/badge.svg?branch=master)](https://coveralls.io/github/git-commit-id/git-commit-id-maven-plugin?branch=master)
-[![Maven Central](https://maven-badges.herokuapp.com/maven-central/pl.project13.maven/git-commit-id-plugin/badge.svg)](https://search.maven.org/artifact/pl.project13.maven/git-commit-id-plugin)
+[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.git-commit-id/git-commit-id-maven-plugin/badge.svg)](https://search.maven.org/artifact/io.github.git-commit-id/git-commit-id-maven-plugin)
-git-commit-id-plugin is a plugin quite similar to [Build Number Maven Plugin](https://www.mojohaus.org/buildnumber-maven-plugin/index.html) for example but as the Build Number plugin at the time when I started this plugin only supported CVS and SVN, something had to be done.
+git-commit-id-maven-plugin is a plugin quite similar to [Build Number Maven Plugin](https://www.mojohaus.org/buildnumber-maven-plugin/index.html) for example but as the Build Number plugin at the time when I started this plugin only supported CVS and SVN, something had to be done.
I had to quickly develop a Git version of such a plugin. For those who don't know the plugin, it basically helps you with the following tasks and answers related questions
* Which version had the bug? Is that deployed already?
* Make your distributed deployment aware of versions
@@ -25,16 +25,29 @@ Quicklinks (all relevant documentation)
Getting the plugin
==================
-The plugin **is available from Maven Central** ([see here](https://search.maven.org/artifact/pl.project13.maven/git-commit-id-plugin)), so you don't have to configure any additional repositories to use this plugin.
+The plugin **is available from Maven Central** ([see here](https://search.maven.org/artifact/io.github.git-commit-id/git-commit-id-maven-plugin)), so you don't have to configure any additional repositories to use this plugin.
A detailed description of using the plugin is available in the [Using the plugin](docs/using-the-plugin.md) document. All you need to do in the basic setup is to include that plugin definition in your `pom.xml`.
For more advanced users we also prepared a [guide to provide a brief overview of the more advanced configurations](docs/using-the-plugin.md)... read on!
+Relocation of the Project
+------------------------
+Newer version (5.x.x or more recent) are available via
+```xml
+io.github.git-commit-id
+git-commit-id-maven-plugin
+```
+older version (4.x.x or older) are available via:
+```xml
+pl.project13.maven
+git-commit-id-plugin
+```
+
Versions
--------
The current version is **4.0.5** ([changelist](https://github.com/git-commit-id/git-commit-id-maven-plugin/issues?q=milestone%3A4.0.5)).
-You can check the available versions by visiting [search.maven.org](https://search.maven.org/artifact/pl.project13.maven/git-commit-id-plugin), though using the newest is obviously the best choice.
+You can check the available versions by visiting [search.maven.org](https://search.maven.org/artifact/io.github.git-commit-id/git-commit-id-maven-plugin), though using the newest is obviously the best choice.
Plugin compatibility with Java
-------------------------------
@@ -85,11 +98,14 @@ But I highly recommend using only stable versions, from Maven Central... :-)
sonatype-snapshots
Sonatype Snapshots
- https://oss.sonatype.org/content/repositories/snapshots/
+ https://s01.oss.sonatype.org/content/repositories/snapshots/
```
+Older Snapshots (prior version 5.X) are available via `https://oss.sonatype.org/content/repositories/snapshots/`.
+
+
If you just would like to see what the plugin can do, you can clone the repository and run
```
mvn clean install -Dmaven.test.skip=true && mvn clean package -Pdemo -Dmaven.test.skip=true
diff --git a/docs/using-the-plugin-in-more-depth.md b/docs/using-the-plugin-in-more-depth.md
index da94a92f..f654c807 100644
--- a/docs/using-the-plugin-in-more-depth.md
+++ b/docs/using-the-plugin-in-more-depth.md
@@ -116,7 +116,7 @@ import org.codehaus.jackson.annotate.JsonWriteNullProperties;
/**
* A spring controlled bean that will be injected
* with properties about the repository state at build time.
-* This information is supplied by my plugin - pl.project13.maven.git-commit-id-plugin
+* This information is supplied by my plugin - pl.project13.maven.git-commit-id-maven-plugin
*/
@JsonWriteNullProperties(true)
public class GitRepositoryState {
diff --git a/docs/using-the-plugin.md b/docs/using-the-plugin.md
index cf95027e..af3fc8e1 100644
--- a/docs/using-the-plugin.md
+++ b/docs/using-the-plugin.md
@@ -11,9 +11,9 @@ For more in-depth explanation of all options read the next section.
```xml
- pl.project13.maven
- git-commit-id-plugin
- 4.0.0
+ io.github.git-commit-id
+ git-commit-id-maven-plugin
+ 5.0.0
get-the-git-infos
@@ -72,9 +72,9 @@ It's really simple to setup this plugin; below is a sample pom that you may base
- pl.project13.maven
- git-commit-id-plugin
- 4.0.0
+ io.github.git-commit-id
+ git-commit-id-maven-plugin
+ 5.0.0
get-the-git-infos
@@ -341,7 +341,7 @@ It's really simple to setup this plugin; below is a sample pom that you may base
the plugin only generate the file in the project build directory which is the first one
based on the execution graph (!).
- Important: Please note that the git-commit-id-plugin also has an option to skip pom
+ Important: Please note that the git-commit-id-maven-plugin also has an option to skip pom
project (`pom`). If you plan to use the `runOnlyOnce` option
alongside with an aggregator pom you may want to set `false`.
diff --git a/pom.xml b/pom.xml
index d09756c3..1efb41f9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -165,7 +165,7 @@
-
+
org.apache.maven.plugins
diff --git a/src/main/java/pl/project13/maven/git/GitCommitIdMojo.java b/src/main/java/pl/project13/maven/git/GitCommitIdMojo.java
index 21d44483..67a36959 100644
--- a/src/main/java/pl/project13/maven/git/GitCommitIdMojo.java
+++ b/src/main/java/pl/project13/maven/git/GitCommitIdMojo.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/main/java/pl/project13/maven/git/GitDirLocator.java b/src/main/java/pl/project13/maven/git/GitDirLocator.java
index 22d6077e..d196eb9d 100644
--- a/src/main/java/pl/project13/maven/git/GitDirLocator.java
+++ b/src/main/java/pl/project13/maven/git/GitDirLocator.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/main/java/pl/project13/maven/git/PropertiesReplacer.java b/src/main/java/pl/project13/maven/git/PropertiesReplacer.java
index 1c39f664..d7b3d612 100644
--- a/src/main/java/pl/project13/maven/git/PropertiesReplacer.java
+++ b/src/main/java/pl/project13/maven/git/PropertiesReplacer.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
@@ -35,7 +35,7 @@ public class PropertiesReplacer {
* Constructor to encapsulates all references required to perform property replacements.
* @param log The logger to log any messages
* @param expressionEvaluator Maven's PluginParameterExpressionEvaluator
- * (see https://github.com/git-commit-id/maven-git-commit-id-plugin/issues/413 why it's needed)
+ * (see https://github.com/git-commit-id/git-commit-id-maven-plugin/issues/413 why it's needed)
*/
public PropertiesReplacer(LoggerBridge log, PluginParameterExpressionEvaluator expressionEvaluator) {
this.log = log;
diff --git a/src/main/java/pl/project13/maven/git/ReplacementProperty.java b/src/main/java/pl/project13/maven/git/ReplacementProperty.java
index 7212a9e6..b746f0a5 100644
--- a/src/main/java/pl/project13/maven/git/ReplacementProperty.java
+++ b/src/main/java/pl/project13/maven/git/ReplacementProperty.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/main/java/pl/project13/maven/git/TransformationRule.java b/src/main/java/pl/project13/maven/git/TransformationRule.java
index 8739b49b..53456618 100644
--- a/src/main/java/pl/project13/maven/git/TransformationRule.java
+++ b/src/main/java/pl/project13/maven/git/TransformationRule.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
@@ -29,7 +29,7 @@
* set to {@code AFTER} to have the rule being applied after the replacement.
* The {@code action}-tag determines the string conversion rule that should be applied.
*
- * Refer to https://github.com/ktoso/maven-git-commit-id-plugin/issues/317 for a use-case.
+ * Refer to https://github.com/git-commit-id/git-commit-id-maven-plugin/issues/317 for a use-case.
*/
public class TransformationRule {
/**
diff --git a/src/main/java/pl/project13/maven/log/MavenLoggerBridge.java b/src/main/java/pl/project13/maven/log/MavenLoggerBridge.java
index 3a6bbaf8..bd890909 100644
--- a/src/main/java/pl/project13/maven/log/MavenLoggerBridge.java
+++ b/src/main/java/pl/project13/maven/log/MavenLoggerBridge.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.log;
diff --git a/src/main/java/pl/project13/maven/validation/ValidationMojo.java b/src/main/java/pl/project13/maven/validation/ValidationMojo.java
index 9ff9063c..d7f14dd1 100644
--- a/src/main/java/pl/project13/maven/validation/ValidationMojo.java
+++ b/src/main/java/pl/project13/maven/validation/ValidationMojo.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.validation;
diff --git a/src/main/java/pl/project13/maven/validation/ValidationProperty.java b/src/main/java/pl/project13/maven/validation/ValidationProperty.java
index c7583c23..3b8ac5b4 100644
--- a/src/main/java/pl/project13/maven/validation/ValidationProperty.java
+++ b/src/main/java/pl/project13/maven/validation/ValidationProperty.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.validation;
diff --git a/src/test/java/pl/project13/core/GitDataProviderTest.java b/src/test/java/pl/project13/core/GitDataProviderTest.java
index 44a6b06a..9877f721 100644
--- a/src/test/java/pl/project13/core/GitDataProviderTest.java
+++ b/src/test/java/pl/project13/core/GitDataProviderTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core;
diff --git a/src/test/java/pl/project13/core/JgitProviderAheadBehindTest.java b/src/test/java/pl/project13/core/JgitProviderAheadBehindTest.java
index 3c3a7c32..f479b9dc 100644
--- a/src/test/java/pl/project13/core/JgitProviderAheadBehindTest.java
+++ b/src/test/java/pl/project13/core/JgitProviderAheadBehindTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core;
diff --git a/src/test/java/pl/project13/core/NativeProviderAheadBehindTest.java b/src/test/java/pl/project13/core/NativeProviderAheadBehindTest.java
index 34b74fdc..1d8d790d 100644
--- a/src/test/java/pl/project13/core/NativeProviderAheadBehindTest.java
+++ b/src/test/java/pl/project13/core/NativeProviderAheadBehindTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core;
diff --git a/src/test/java/pl/project13/core/PropertiesFileGeneratorTest.java b/src/test/java/pl/project13/core/PropertiesFileGeneratorTest.java
index 26e6f3e7..ce282992 100644
--- a/src/test/java/pl/project13/core/PropertiesFileGeneratorTest.java
+++ b/src/test/java/pl/project13/core/PropertiesFileGeneratorTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core;
diff --git a/src/test/java/pl/project13/core/UriUserInfoRemoverTest.java b/src/test/java/pl/project13/core/UriUserInfoRemoverTest.java
index 17140208..a3c2e863 100644
--- a/src/test/java/pl/project13/core/UriUserInfoRemoverTest.java
+++ b/src/test/java/pl/project13/core/UriUserInfoRemoverTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core;
diff --git a/src/test/java/pl/project13/core/jgit/DescribeCommandAbbrevIntegrationTest.java b/src/test/java/pl/project13/core/jgit/DescribeCommandAbbrevIntegrationTest.java
index a3ced7eb..47cfdcd2 100644
--- a/src/test/java/pl/project13/core/jgit/DescribeCommandAbbrevIntegrationTest.java
+++ b/src/test/java/pl/project13/core/jgit/DescribeCommandAbbrevIntegrationTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core.jgit;
diff --git a/src/test/java/pl/project13/core/jgit/DescribeCommandIntegrationTest.java b/src/test/java/pl/project13/core/jgit/DescribeCommandIntegrationTest.java
index ab959a37..cf4e0768 100644
--- a/src/test/java/pl/project13/core/jgit/DescribeCommandIntegrationTest.java
+++ b/src/test/java/pl/project13/core/jgit/DescribeCommandIntegrationTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core.jgit;
diff --git a/src/test/java/pl/project13/core/jgit/DescribeCommandOptionsTest.java b/src/test/java/pl/project13/core/jgit/DescribeCommandOptionsTest.java
index 46193937..3976c388 100644
--- a/src/test/java/pl/project13/core/jgit/DescribeCommandOptionsTest.java
+++ b/src/test/java/pl/project13/core/jgit/DescribeCommandOptionsTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core.jgit;
diff --git a/src/test/java/pl/project13/core/jgit/DescribeCommandTagsIntegrationTest.java b/src/test/java/pl/project13/core/jgit/DescribeCommandTagsIntegrationTest.java
index c14e9d91..0105b364 100644
--- a/src/test/java/pl/project13/core/jgit/DescribeCommandTagsIntegrationTest.java
+++ b/src/test/java/pl/project13/core/jgit/DescribeCommandTagsIntegrationTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core.jgit;
diff --git a/src/test/java/pl/project13/core/jgit/DescribeResultTest.java b/src/test/java/pl/project13/core/jgit/DescribeResultTest.java
index ba97526a..31701615 100644
--- a/src/test/java/pl/project13/core/jgit/DescribeResultTest.java
+++ b/src/test/java/pl/project13/core/jgit/DescribeResultTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core.jgit;
diff --git a/src/test/java/pl/project13/core/jgit/JGitCommonIntegrationTest.java b/src/test/java/pl/project13/core/jgit/JGitCommonIntegrationTest.java
index 9fc92046..b6cff4a1 100644
--- a/src/test/java/pl/project13/core/jgit/JGitCommonIntegrationTest.java
+++ b/src/test/java/pl/project13/core/jgit/JGitCommonIntegrationTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.core.jgit;
diff --git a/src/test/java/pl/project13/maven/git/AheadBehindTest.java b/src/test/java/pl/project13/maven/git/AheadBehindTest.java
index 6d4a4174..5757de68 100644
--- a/src/test/java/pl/project13/maven/git/AheadBehindTest.java
+++ b/src/test/java/pl/project13/maven/git/AheadBehindTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/AvailableGitTestRepo.java b/src/test/java/pl/project13/maven/git/AvailableGitTestRepo.java
index a6cbac40..0721a9c4 100644
--- a/src/test/java/pl/project13/maven/git/AvailableGitTestRepo.java
+++ b/src/test/java/pl/project13/maven/git/AvailableGitTestRepo.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/BigDiffTest.java b/src/test/java/pl/project13/maven/git/BigDiffTest.java
index fda36d38..ec1880b1 100644
--- a/src/test/java/pl/project13/maven/git/BigDiffTest.java
+++ b/src/test/java/pl/project13/maven/git/BigDiffTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/ContainsKeyCondition.java b/src/test/java/pl/project13/maven/git/ContainsKeyCondition.java
index 03e27b49..c4a8deea 100644
--- a/src/test/java/pl/project13/maven/git/ContainsKeyCondition.java
+++ b/src/test/java/pl/project13/maven/git/ContainsKeyCondition.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/DoesNotContainKeyCondition.java b/src/test/java/pl/project13/maven/git/DoesNotContainKeyCondition.java
index 321ac1fa..084ffdb8 100644
--- a/src/test/java/pl/project13/maven/git/DoesNotContainKeyCondition.java
+++ b/src/test/java/pl/project13/maven/git/DoesNotContainKeyCondition.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/FileSystemMavenSandbox.java b/src/test/java/pl/project13/maven/git/FileSystemMavenSandbox.java
index ac915a3d..5165ac78 100644
--- a/src/test/java/pl/project13/maven/git/FileSystemMavenSandbox.java
+++ b/src/test/java/pl/project13/maven/git/FileSystemMavenSandbox.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/GitCommitIdMojoIntegrationTest.java b/src/test/java/pl/project13/maven/git/GitCommitIdMojoIntegrationTest.java
index 6ae1e781..becd83fe 100644
--- a/src/test/java/pl/project13/maven/git/GitCommitIdMojoIntegrationTest.java
+++ b/src/test/java/pl/project13/maven/git/GitCommitIdMojoIntegrationTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/GitCommitIdMojoTest.java b/src/test/java/pl/project13/maven/git/GitCommitIdMojoTest.java
index 0aa8beb5..39d66fe1 100644
--- a/src/test/java/pl/project13/maven/git/GitCommitIdMojoTest.java
+++ b/src/test/java/pl/project13/maven/git/GitCommitIdMojoTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/GitDirLocatorTest.java b/src/test/java/pl/project13/maven/git/GitDirLocatorTest.java
index 4cee76ca..0b4fc657 100644
--- a/src/test/java/pl/project13/maven/git/GitDirLocatorTest.java
+++ b/src/test/java/pl/project13/maven/git/GitDirLocatorTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/GitIntegrationTest.java b/src/test/java/pl/project13/maven/git/GitIntegrationTest.java
index 8c4aa8c8..d49713c2 100644
--- a/src/test/java/pl/project13/maven/git/GitIntegrationTest.java
+++ b/src/test/java/pl/project13/maven/git/GitIntegrationTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/GitPropertiesFileTest.java b/src/test/java/pl/project13/maven/git/GitPropertiesFileTest.java
index cb010db3..69c9d0a4 100644
--- a/src/test/java/pl/project13/maven/git/GitPropertiesFileTest.java
+++ b/src/test/java/pl/project13/maven/git/GitPropertiesFileTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/GitSubmodulesTest.java b/src/test/java/pl/project13/maven/git/GitSubmodulesTest.java
index 05bda3e2..729d5b5a 100644
--- a/src/test/java/pl/project13/maven/git/GitSubmodulesTest.java
+++ b/src/test/java/pl/project13/maven/git/GitSubmodulesTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/NaivePerformanceTest.java b/src/test/java/pl/project13/maven/git/NaivePerformanceTest.java
index f9d678ad..7b37e210 100644
--- a/src/test/java/pl/project13/maven/git/NaivePerformanceTest.java
+++ b/src/test/java/pl/project13/maven/git/NaivePerformanceTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/NativeAndJGitProviderTest.java b/src/test/java/pl/project13/maven/git/NativeAndJGitProviderTest.java
index 6db04fed..a52b17bd 100644
--- a/src/test/java/pl/project13/maven/git/NativeAndJGitProviderTest.java
+++ b/src/test/java/pl/project13/maven/git/NativeAndJGitProviderTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/PropertiesFiltererTest.java b/src/test/java/pl/project13/maven/git/PropertiesFiltererTest.java
index f2bed06b..7d06d10d 100644
--- a/src/test/java/pl/project13/maven/git/PropertiesFiltererTest.java
+++ b/src/test/java/pl/project13/maven/git/PropertiesFiltererTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/git/PropertiesReplacerTest.java b/src/test/java/pl/project13/maven/git/PropertiesReplacerTest.java
index 6ff50ac4..24b06793 100644
--- a/src/test/java/pl/project13/maven/git/PropertiesReplacerTest.java
+++ b/src/test/java/pl/project13/maven/git/PropertiesReplacerTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.git;
diff --git a/src/test/java/pl/project13/maven/validation/ValidationMojoTest.java b/src/test/java/pl/project13/maven/validation/ValidationMojoTest.java
index b04dad08..7fef318a 100644
--- a/src/test/java/pl/project13/maven/validation/ValidationMojoTest.java
+++ b/src/test/java/pl/project13/maven/validation/ValidationMojoTest.java
@@ -1,18 +1,18 @@
/*
- * This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
+ * This file is part of git-commit-id-maven-plugin by Konrad 'ktoso' Malawski
*
- * git-commit-id-plugin is free software: you can redistribute it and/or modify
+ * git-commit-id-maven-plugin 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.
*
- * git-commit-id-plugin is distributed in the hope that it will be useful,
+ * git-commit-id-maven-plugin 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
- * along with git-commit-id-plugin. If not, see .
+ * along with git-commit-id-maven-plugin. If not, see .
*/
package pl.project13.maven.validation;
diff --git a/src/test/resources/git.properties b/src/test/resources/git.properties
index c720d8a0..8591979a 100644
--- a/src/test/resources/git.properties
+++ b/src/test/resources/git.properties
@@ -1,18 +1,18 @@
#
-# This file is part of git-commit-id-plugin by Konrad Malawski
+# This file is part of git-commit-id-maven-plugin by Konrad Malawski
#
-# git-commit-id-plugin is free software: you can redistribute it and/or modify
+# git-commit-id-maven-plugin 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.
#
-# git-commit-id-plugin is distributed in the hope that it will be useful,
+# git-commit-id-maven-plugin 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 General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
-# along with git-commit-id-plugin. If not, see .
+# along with git-commit-id-maven-plugin. If not, see .
#
git.branch=${git.branch}