Skip to content

Commit

Permalink
Finalise 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rudikershaw committed Mar 5, 2023
1 parent a30bd84 commit e8471cd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ A common use-case might be to install local git hooks by setting the `core.hooks
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.0</version>
<version>3.4.1</version>
<configuration>
<gitConfig>
<!-- The location of the directory you are using to store the Git hooks in your project. -->
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.1-SNAPSHOT</version>
<version>3.4.1</version>
<packaging>maven-plugin</packaging>

<name>Git Build Hook Maven Plugin</name>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/default-test-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.1-SNAPSHOT</version>
<version>3.4.1</version>
</plugin>
</plugins>
</build>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/test-project-configure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.1-SNAPSHOT</version>
<version>3.4.1</version>
<configuration>
<gitConfig>
<core.hooksPath>hooks-path/</core.hooksPath>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/test-project-initialise/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.1-SNAPSHOT</version>
<version>3.4.1</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/test-project-install-hooks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.1-SNAPSHOT</version>
<version>3.4.1</version>
<configuration>
<installHooks>
<pre-commit>hook-to-install.sh</pre-commit>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/test-project-invalid-hook/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.1-SNAPSHOT</version>
<version>3.4.1</version>
<configuration>
<installHooks>
<pre-commit-oops>hook-to-install.sh</pre-commit-oops>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/test-project-reinstall-hooks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.1-SNAPSHOT</version>
<version>3.4.1</version>
<configuration>
<installHooks>
<pre-commit>hook-to-install.sh</pre-commit>
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/test-project-reinstall-hooks/pom2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<plugin>
<groupId>com.rudikershaw.gitbuildhook</groupId>
<artifactId>git-build-hook-maven-plugin</artifactId>
<version>3.4.1-SNAPSHOT</version>
<version>3.4.1</version>
<configuration>
<installHooks>
<pre-commit>hook-to-reinstall.sh</pre-commit>
Expand Down

0 comments on commit e8471cd

Please sign in to comment.