This is an automated email from the ASF dual-hosted git repository.
mgrigorov pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/branch-1.11 by this push:
new f3a934bae AVRO-3701: Update maven-resources-plugin to 3.x (#2075)
f3a934bae is described below
commit f3a934baefa8c7b760975acd887a407a7fdd54ed
Author: Martin Grigorov <[email protected]>
AuthorDate: Tue Jan 31 14:05:29 2023 +0200
AVRO-3701: Update maven-resources-plugin to 3.x (#2075)
Maven 4.x (alpha) does not work with older versions of this plugin
Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
(cherry picked from commit 564e2a5b8fddfe92a290910edc2f25f9a5d9925e)
---
pom.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/pom.xml b/pom.xml
index d039011c5..9527a9c9b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -56,6 +56,7 @@
<maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
<maven-plugin-plugin.version>3.7.1</maven-plugin-plugin.version>
+ <maven-resources-plugin.version>3.3.0</maven-resources-plugin.version>
<maven-shade-plugin.version>3.4.1</maven-shade-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<plugin-tools-javadoc.version>3.7.0</plugin-tools-javadoc.version>
@@ -153,6 +154,11 @@
<artifactId>apache-rat-plugin</artifactId>
<version>${apache-rat-plugin.version}</version>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <version>${maven-resources-plugin.version}</version>
+ </plugin>
</plugins>
</pluginManagement>
<plugins>