This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-parent.git
The following commit(s) were added to refs/heads/master by this push:
new 4470f87 Add artifact:check-buildplan to the validate phase
4470f87 is described below
commit 4470f87bc746261c02ffa67110c5255f59427f92
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Dec 30 14:34:42 2023 -0500
Add artifact:check-buildplan to the validate phase
---
pom.xml | 20 +++++++++++++++++++-
src/changes/changes.xml | 1 +
2 files changed, 20 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index bf1cebb..ffef439 100644
--- a/pom.xml
+++ b/pom.xml
@@ -91,7 +91,7 @@
<minimalJavaBuildVersion>8</minimalJavaBuildVersion>
<!-- configuration bits for cutting a release candidate, must be
overridden by components -->
<!-- TODO How can we make project.build.outputTimestamp and changes.xml's
release data the same? -->
-
<project.build.outputTimestamp>2023-11-21T00:18:58Z</project.build.outputTimestamp>
+
<project.build.outputTimestamp>2024-01-01T00:00:00Z</project.build.outputTimestamp>
<commons.release.version>66</commons.release.version>
<commons.release.next>67</commons.release.next>
<commons.rc.version>RC1</commons.rc.version>
@@ -654,6 +654,11 @@
<artifactId>apache-rat-plugin</artifactId>
<version>${commons.rat.version}</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-artifact-plugin</artifactId>
+ <version>3.5.0</version>
+ </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
@@ -1053,6 +1058,19 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-artifact-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>check-buildplan</id>
+ <phase>validate</phase>
+ <goals>
+ <goal>check-buildplan</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ea3620e..9d04101 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -63,6 +63,7 @@ The <action> type attribute can be add,update,fix,remove.
<release version="66" date="20YY-MM-DD" description="Version 66:
Maintenance and update dependencies">
<!-- ADD -->
<action type="add" dev="ggregory">Add property
commons.javadoc21.java.link.</action>
+ <action type="add" dev="ggregory">Add artifact:check-buildplan to
the validate phase.</action>
<!-- FIX -->
<action type="fix" dev="sebb">Drop markmail from mailingList
section</action>
<!-- UPDATE -->