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-logging.git
The following commit(s) were added to refs/heads/master by this push: new b9464ac Fix Maven jar plugin invocation b9464ac is described below commit b9464ace5029cbfb53c73652d27a9353558b52bd Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Sep 2 11:57:04 2023 -0400 Fix Maven jar plugin invocation --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 1e79b64..f0a9a8a 100644 --- a/pom.xml +++ b/pom.xml @@ -208,7 +208,7 @@ under the License. <goal>test-jar</goal> </goals> <configuration> - <jarName>commons-logging</jarName> + <finalName>commons-logging</finalName> </configuration> </execution> @@ -219,7 +219,7 @@ under the License. <goal>jar</goal> </goals> <configuration> - <jarName>${project.artifactId}-api-${project.version}</jarName> + <finalName>${project.artifactId}-api-${project.version}</finalName> <classifier>api</classifier> <includes> <include>org/apache/commons/logging/*.class</include> @@ -244,7 +244,7 @@ under the License. <goal>jar</goal> </goals> <configuration> - <jarName>${project.artifactId}-adapters-${project.version}</jarName> + <finalName>${project.artifactId}-adapters-${project.version}</finalName> <classifier>adapters</classifier> <includes> <include>org/apache/commons/logging/impl/**.class</include> @@ -269,7 +269,7 @@ under the License. <goal>jar</goal> </goals> <configuration> - <jarName>${project.artifactId}-${project.version}</jarName> + <finalName>${project.artifactId}-${project.version}</finalName> <classifier>full</classifier> </configuration> </execution>