This is an automated email from the ASF dual-hosted git repository.
gangwu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git
The following commit(s) were added to refs/heads/master by this push:
new a1f8591b3 PARQUET-2457: Add missing maven-scala-plugin version (#1312)
a1f8591b3 is described below
commit a1f8591b338c7bdb0556286cb4413b8d30748e3c
Author: Laurent Goujon <[email protected]>
AuthorDate: Thu Apr 11 22:00:01 2024 -0700
PARQUET-2457: Add missing maven-scala-plugin version (#1312)
There's no version specified for maven-scala-plugin. This causes Maven
to emit a warning and to pick a version but this may break at any time
Fix it by choosing the latest version of the plugin (4.8.1) and also use
the new coordinates of the plugin: net.alchim31.maven:scala-maven-plugin
---
parquet-scala/pom.xml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/parquet-scala/pom.xml b/parquet-scala/pom.xml
index ed0f9eb38..30a961742 100644
--- a/parquet-scala/pom.xml
+++ b/parquet-scala/pom.xml
@@ -81,8 +81,9 @@
<build>
<plugins>
<plugin>
- <groupId>org.scala-tools</groupId>
- <artifactId>maven-scala-plugin</artifactId>
+ <groupId>net.alchim31.maven</groupId>
+ <artifactId>scala-maven-plugin</artifactId>
+ <version>4.8.1</version>
<executions>
<execution>
<goals>