You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
In general pull requests and support for open issues is always welcome!
3
3
4
4
## Project layout
5
-
This project is a multi-module Maven project. It consists of the following modules:
6
-
-[core](core) (`git-commit-id-plugin-core`): The core framework of the plugin
7
-
-[maven](maven) (`git-commit-id-plugin`): The actual plugin, which depends on the `core` module
5
+
This project is a Maven project which currently consists of the following:
6
+
-[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
7
+
-[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
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.
9
+
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.
10
10
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
11
11
* Which version had the bug? Is that deployed already?
12
12
* Make your distributed deployment aware of versions
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.
28
+
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.
29
29
30
30
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`.
31
31
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!
32
32
33
+
Relocation of the Project
34
+
------------------------
35
+
Newer version (5.x.x or more recent) are available via
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)).
36
49
37
-
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.
50
+
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.
38
51
39
52
Plugin compatibility with Java
40
53
-------------------------------
@@ -85,11 +98,14 @@ But I highly recommend using only stable versions, from Maven Central... :-)
Copy file name to clipboardExpand all lines: pom.xml
+1-1
Original file line number
Diff line number
Diff line change
@@ -165,7 +165,7 @@
165
165
</pluginManagement>
166
166
167
167
<plugins>
168
-
<!-- if you would like to run the git-commit-id-plugin for your build, you could also include it here instead using a profile (see README.md) -->
168
+
<!-- if you would like to run the git-commit-id-maven-plugin for your build, you could also include it here instead using a profile (see README.md) -->
0 commit comments