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

lvshaokang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampark.git


The following commit(s) were added to refs/heads/dev by this push:
     new 2d565853d [Bug] maven build project failed bug fixed #1706 (#1710)
2d565853d is described below

commit 2d565853deb1c780a52c8a5b760e286344177288
Author: benjobs <[email protected]>
AuthorDate: Thu Sep 29 15:36:23 2022 +0800

    [Bug] maven build project failed bug fixed #1706 (#1710)
---
 pom.xml                                            | 26 ++++++++++++++--------
 streampark-common/pom.xml                          |  1 -
 streampark-flink/streampark-flink-packer/pom.xml   |  2 +-
 .../streampark-flink-shims_flink-1.15/pom.xml      |  1 -
 .../streampark-flink-sqlclient/pom.xml             |  1 -
 streampark-plugin/streampark-jvm-profiler/pom.xml  |  1 -
 6 files changed, 18 insertions(+), 14 deletions(-)

diff --git a/pom.xml b/pom.xml
index ae1e95840..9fefc9ff2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -121,7 +121,14 @@
         <commons-lang3.version>3.8.1</commons-lang3.version>
         <enumeratum.version>1.6.1</enumeratum.version>
 
-        
<maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version>
+        
<maven-checkstyle-plugin.version>3.2.0</maven-checkstyle-plugin.version>
+        <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
+        <maven-shade-plugin.version>3.2.4</maven-shade-plugin.version>
+        <scala-maven-plugin.version>4.7.1</scala-maven-plugin.version>
+        <maven-gpg-plugin.version>1.5</maven-gpg-plugin.version>
+        <maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version>
+        <maven-source-plugin.version> 2.2.1</maven-source-plugin.version>
+        
<build-helper-maven-plugin.version>3.3.0</build-helper-maven-plugin.version>
         <checkstyle.fails.on.error>true</checkstyle.fails.on.error>
         <scalastyle.fails.on.error>true</scalastyle.fails.on.error>
         
<scalastyle-maven-plugin.version>1.0.0</scalastyle-maven-plugin.version>
@@ -651,7 +658,7 @@
                 <plugin>
                     <groupId>org.codehaus.mojo</groupId>
                     <artifactId>build-helper-maven-plugin</artifactId>
-                    <version>1.7</version>
+                    <version>${build-helper-maven-plugin.version}</version>
                     <executions>
                         <execution>
                             <id>add-source</id>
@@ -676,7 +683,8 @@
                     <configuration>
                         <!--suppress UnresolvedMavenProperty -->
                         
<configLocation>${maven.multiModuleProjectDirectory}/tools/checkstyle/checkstyle.xml</configLocation>
-                        <encoding>UTF-8</encoding>
+                        <inputEncoding>UTF-8</inputEncoding>
+                        <outputEncoding>UTF-8</outputEncoding>
                         <consoleOutput>true</consoleOutput>
                         
<includeTestSourceDirectory>false</includeTestSourceDirectory>
                         
<failOnViolation>${checkstyle.fails.on.error}</failOnViolation>
@@ -756,7 +764,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-compiler-plugin</artifactId>
-                    <version>3.8.1</version>
+                    <version>${maven-compiler-plugin.version}</version>
                     <configuration>
                         <source>${project.build.jdk}</source>
                         <target>${project.build.jdk}</target>
@@ -774,7 +782,7 @@
                 <plugin>
                     <groupId>net.alchim31.maven</groupId>
                     <artifactId>scala-maven-plugin</artifactId>
-                    <version>4.3.0</version>
+                    <version>${scala-maven-plugin.version}</version>
                     <configuration>
                         
<addScalacArgs>-target:jvm-${project.build.jdk}</addScalacArgs>
                         <target>${project.build.jdk}</target>
@@ -803,7 +811,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-shade-plugin</artifactId>
-                    <version>3.2.4</version>
+                    <version>${maven-shade-plugin.version}</version>
                     <executions>
                         <execution>
                             <id>shade-flink</id>
@@ -844,7 +852,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-source-plugin</artifactId>
-                    <version>2.2.1</version>
+                    <version>${maven-source-plugin.version}</version>
                     <executions>
                         <execution>
                             <id>attach-sources</id>
@@ -858,7 +866,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-javadoc-plugin</artifactId>
-                    <version>2.9.1</version>
+                    <version>${maven-javadoc-plugin.version}</version>
                     <executions>
                         <execution>
                             <id>attach-javadocs</id>
@@ -872,7 +880,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-gpg-plugin</artifactId>
-                    <version>1.5</version>
+                    <version>${maven-gpg-plugin.version}</version>
                     <executions>
                         <execution>
                             <id>sign-artifacts</id>
diff --git a/streampark-common/pom.xml b/streampark-common/pom.xml
index 39680365a..6e79956c7 100644
--- a/streampark-common/pom.xml
+++ b/streampark-common/pom.xml
@@ -204,7 +204,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-shade-plugin</artifactId>
-                <version>3.2.4</version>
                 <executions>
                     <execution>
                         <phase>package</phase>
diff --git a/streampark-flink/streampark-flink-packer/pom.xml 
b/streampark-flink/streampark-flink-packer/pom.xml
index 0ed496f9d..509a8cd42 100644
--- a/streampark-flink/streampark-flink-packer/pom.xml
+++ b/streampark-flink/streampark-flink-packer/pom.xml
@@ -32,7 +32,7 @@
         <eclipse.aether.version>1.1.0</eclipse.aether.version>
         <maven.aether.version>3.3.9</maven.aether.version>
         <maven.shade.version>3.2.4</maven.shade.version>
-        <docker.client.version>3.2.12</docker.client.version>
+        <docker.client.version>3.2.13</docker.client.version>
         <scalatest.skiptests>true</scalatest.skiptests>
     </properties>
 
diff --git 
a/streampark-flink/streampark-flink-shims/streampark-flink-shims_flink-1.15/pom.xml
 
b/streampark-flink/streampark-flink-shims/streampark-flink-shims_flink-1.15/pom.xml
index f7b4b5159..f82087c97 100644
--- 
a/streampark-flink/streampark-flink-shims/streampark-flink-shims_flink-1.15/pom.xml
+++ 
b/streampark-flink/streampark-flink-shims/streampark-flink-shims_flink-1.15/pom.xml
@@ -119,7 +119,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-shade-plugin</artifactId>
-                <version>3.2.4</version>
                 <executions>
                     <execution>
                         <phase>package</phase>
diff --git a/streampark-flink/streampark-flink-sqlclient/pom.xml 
b/streampark-flink/streampark-flink-sqlclient/pom.xml
index bfd64b3e5..34c54420f 100644
--- a/streampark-flink/streampark-flink-sqlclient/pom.xml
+++ b/streampark-flink/streampark-flink-sqlclient/pom.xml
@@ -100,7 +100,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-shade-plugin</artifactId>
-                <version>3.2.4</version>
                 <executions>
                     <execution>
                         <configuration>
diff --git a/streampark-plugin/streampark-jvm-profiler/pom.xml 
b/streampark-plugin/streampark-jvm-profiler/pom.xml
index c2b1cab12..e28929647 100644
--- a/streampark-plugin/streampark-jvm-profiler/pom.xml
+++ b/streampark-plugin/streampark-jvm-profiler/pom.xml
@@ -101,7 +101,6 @@
                 <configuration>
                     
<createDependencyReducedPom>false</createDependencyReducedPom>
                 </configuration>
-                <version>3.2.4</version>
                 <executions>
                     <execution>
                         <phase>package</phase>

Reply via email to