You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by zh...@apache.org on 2020/09/14 03:13:32 UTC

[pulsar] branch master updated: Fix the failed ci issue (#8032)

This is an automated email from the ASF dual-hosted git repository.

zhaijia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new f06f0d8  Fix the failed ci issue (#8032)
f06f0d8 is described below

commit f06f0d8baf3975367c3f5a14dc5a0bda692487ba
Author: Yong Zhang <zh...@gmail.com>
AuthorDate: Mon Sep 14 11:12:29 2020 +0800

    Fix the failed ci issue (#8032)
    
    **Motivation**
    
    Currently, the Pulsar CI always failed by:
    ```
    2020-09-11T00:49:20.3402047Z [ERROR] Failed to execute goal net.alchim31.maven:scala-maven-plugin:4.1.0:add-source (default) on project flink: Execution default of goal net.alchim31.maven:scala-maven-plugin:4.1.0:add-source failed: Plugin net.alchim31.maven:scala-maven-plugin:4.1.0 or one of its dependencies could not be resolved: The following artifacts could not be resolved: org.apache.maven:maven-compat:jar:3.3.9, org.apache.maven:maven-builder-support:jar:3.3.9, org.apache.maven:m [...]
    ```
    
    Upgrade the scala-maven-plugin to resolve this issue.
---
 examples/flink/pom.xml | 2 +-
 examples/spark/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/flink/pom.xml b/examples/flink/pom.xml
index 29869b6..23f5b00 100644
--- a/examples/flink/pom.xml
+++ b/examples/flink/pom.xml
@@ -131,7 +131,7 @@
       <plugin>
         <groupId>net.alchim31.maven</groupId>
         <artifactId>scala-maven-plugin</artifactId>
-        <version>4.1.0</version>
+        <version>4.3.0</version>
         <executions>
           <execution>
             <goals>
diff --git a/examples/spark/pom.xml b/examples/spark/pom.xml
index 2aef2d1..81abf28 100644
--- a/examples/spark/pom.xml
+++ b/examples/spark/pom.xml
@@ -98,7 +98,7 @@
       <plugin>
         <groupId>net.alchim31.maven</groupId>
         <artifactId>scala-maven-plugin</artifactId>
-        <version>4.1.0</version>
+        <version>4.3.0</version>
         <executions>
           <execution>
             <goals>