diff --git a/.github/workflows/default-tests.yml b/.github/workflows/default-tests.yml index aee98617..c9f33a9b 100644 --- a/.github/workflows/default-tests.yml +++ b/.github/workflows/default-tests.yml @@ -59,7 +59,7 @@ jobs: strategy: matrix: java_version: ['11'] - maven_version: ['3.1.0-alpha-1', '3.1.1', '3.2.5', '3.3.9', '3.5.4', '3.6.3', '3.8.8', '3.9.1', '4.0.0-alpha-5'] + maven_version: ['3.2.5', '3.3.9', '3.5.4', '3.6.3', '3.8.8', '3.9.1', '3.9.2', '4.0.0-alpha-5'] steps: - uses: actions/checkout@v3 diff --git a/pom.xml b/pom.xml index 626da5ba..85a3ce85 100644 --- a/pom.xml +++ b/pom.xml @@ -5,6 +5,7 @@ org.sonatype.oss oss-parent 9 + io.github.git-commit-id @@ -21,7 +22,7 @@ - [${maven-plugin-api.version},) + [3.2.5,) @@ -46,8 +47,8 @@ 11 - 3.1.0-alpha-1 - 3.6.0 + 3.9.2 + 3.9.0 4.13.2 5.1.1 @@ -75,7 +76,7 @@ - src/main/resources + ${project.basedir}/src/main/resources true **/*.properties @@ -85,7 +86,7 @@ - src/test/resources + ${project.basedir}/src/test/resources _git_*/** README.md @@ -101,7 +102,7 @@ maven-assembly-plugin - 3.4.2 + 3.6.0 maven-dependency-plugin @@ -109,15 +110,15 @@ maven-release-plugin - 3.0.0-M7 + 3.0.0 maven-enforcer-plugin - 3.2.1 + 3.3.0 maven-compiler-plugin - 3.8.1 + 3.11.0 maven-gpg-plugin @@ -125,15 +126,15 @@ maven-clean-plugin - 3.1.0 + 3.2.0 maven-resources-plugin - 3.1.0 + 3.3.1 maven-jar-plugin - 3.2.0 + 3.3.0 maven-plugin-plugin @@ -145,7 +146,7 @@ maven-install-plugin - 2.5.2 + 3.1.1 maven-deploy-plugin @@ -157,7 +158,7 @@ maven-javadoc-plugin - 3.2.0 + 3.5.0 maven-source-plugin @@ -167,6 +168,16 @@ + + + maven-enforcer-plugin + 3.3.0 + + + maven-release-plugin + 3.0.0 + + @@ -443,24 +454,23 @@ - org.eluder.coveralls + io.jsonwebtoken.coveralls coveralls-maven-plugin - 4.3.0 + 4.4.1 - javax.xml.bind - jaxb-api - 2.2.3 + jakarta.xml.bind + jakarta.xml.bind-api + 2.3.3 - org.jacoco jacoco-maven-plugin - 0.8.2 + 0.8.10 prepare-agent @@ -476,7 +486,7 @@ checkstyle - 3.1.0 + 3.2.2 8.25 ${basedir}/.github/.checkstyle diff --git a/src/main/java/pl/project13/maven/git/GitCommitIdMojo.java b/src/main/java/pl/project13/maven/git/GitCommitIdMojo.java index 82d0e650..68e9c218 100644 --- a/src/main/java/pl/project13/maven/git/GitCommitIdMojo.java +++ b/src/main/java/pl/project13/maven/git/GitCommitIdMojo.java @@ -927,8 +927,8 @@ public class GitCommitIdMojo extends AbstractMojo { * of the input/output property. * This behaviour can be achieved by defining a list of {@code transformationRules} for * the property where those rules should take effect. - * Each {@code transformationRule} consist of two required fields {@cdoe apply} and {@code action}. - * The {@cdoe apply}-tag controls when the rule should be applied and can be set to {@code BEFORE} + * Each {@code transformationRule} consist of two required fields {@code apply} and {@code action}. + * The {@code apply}-tag controls when the rule should be applied and can be set to {@code BEFORE} * to have the rule being applied before or it can be 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.