Maven-关于compile/install和local repository的理解

本文通过实例介绍了Maven在处理多模块项目时的工作原理,特别是如何通过不同命令(如compile与install)来正确地管理和编译项目依赖。

背景说明:

工作的项目是一个多模块Maven工程,平时增量时需要使用命令对关联的模块进行编译,初步检查代码有没有错,但是最近一编译就报一大堆import找不到或者找不到符号的问题,这个问题比较常见,网上一搜也有很多人问。

因为最初对Maven没什么概念(其实现在也一样),编译的命令被我从 install 改成了 compile ,因为这样更快一些。。但之前都一直很正常,现在突然就编译各种乱七八糟的错误,于是各种百度google查查,有人说是jdk的问题,有人说是文件编码问题,但查了之后发现都不是,最终在一篇帖子的回复里看到了:

 

看到这个的时候,才"恍然大悟" pom 文件里配置的那些依赖到底是怎么用的,之前只是从表面上看出,这个模块需要依赖其他的模块,但不知道 compile、install 环节都是怎么利用这些模块的,加上和BOSS聊天的时候,听到他提到"本地仓库"四个字,瞬间感觉明白了什么,所以在本机做了以下的测试来加深一下Maven编译多模块项目时的简单原理。

 

 

新建Maven工程:

然后去修改common模块的pom文件,添加对utils的依赖:

 

[html]  view plain  copy
 
  在CODE上查看代码片 派生到我的代码片
  1. <dependency>  
  2.       <groupId>com.mxm</groupId>  
  3.       <artifactId>Utils</artifactId>  
  4.       <version>0.0.1-SNAPSHOT</version>  
  5.       <scope>compile</scope>  
  6. </dependency>  


编译测试:

 

直接对common模块编译:

报错很明显,没有utils模块的jar包

 

对utils模块使用compile命令:

成功,但这时是不会把项目编译成jar包放在本地仓库中的。

 

对utils模块使用install命令:

这时就可以看到在本地仓库中同步了jar包。

 

这时再对common模块编译:

通过,这时把本地仓库下的Utils-0.0.1-SNAPSHOT.jar删掉,再编译依旧会报错。

 

结论:

所以,验证之后对Maven编译和多模块间的依赖有了理解,虽然这可能是Maven本身的基础知识,但因为一直对Maven没有研究,只是凭pom文件中的配置简单个人理解,造成了编译出错这种比较低级的问题。。

PS D:\develop\JavaCode\isdp-boot3> mvn dependency:tree -Dincludes=org.springframework:spring-web [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Reactor Build Order: [INFO] [INFO] mis-common [jar] [INFO] isdp-boot3 [pom] [INFO] mis-pos [jar] [INFO] mis-web [jar] Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-release-plugin/3.0.1/maven-release-plugin-3.0.1.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-release-plugin/3.0.1/maven-release-plugin-3.0.1.pom (9.8 kB at 27 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/release/maven-release/3.0.1/maven-release-3.0.1.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/release/maven-release/3.0.1/maven-release-3.0.1.pom (11 kB at 118 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-release-plugin/3.0.1/maven-release-plugin-3.0.1.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-release-plugin/3.0.1/maven-release-plugin-3.0.1.jar (61 kB at 484 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-enforcer-plugin/3.5.0/maven-enforcer-plugin-3.5.0.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-enforcer-plugin/3.5.0/maven-enforcer-plugin-3.5.0.pom (8.1 kB at 33 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/enforcer/enforcer/3.5.0/enforcer-3.5.0.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/enforcer/enforcer/3.5.0/enforcer-3.5.0.pom (9.3 kB at 110 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-enforcer-plugin/3.5.0/maven-enforcer-plugin-3.5.0.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-enforcer-plugin/3.5.0/maven-enforcer-plugin-3.5.0.jar (39 kB at 132 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-failsafe-plugin/3.5.3/maven-failsafe-plugin-3.5.3.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-failsafe-plugin/3.5.3/maven-failsafe-plugin-3.5.3.pom (11 kB at 60 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-failsafe-plugin/3.5.3/maven-failsafe-plugin-3.5.3.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-failsafe-plugin/3.5.3/maven-failsafe-plugin-3.5.3.jar (57 kB at 587 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-help-plugin/3.5.1/maven-help-plugin-3.5.1.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-help-plugin/3.5.1/maven-help-plugin-3.5.1.pom (10 kB at 110 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-help-plugin/3.5.1/maven-help-plugin-3.5.1.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-help-plugin/3.5.1/maven-help-plugin-3.5.1.jar (65 kB at 553 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-invoker-plugin/3.9.1/maven-invoker-plugin-3.9.1.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-invoker-plugin/3.9.1/maven-invoker-plugin-3.9.1.pom (16 kB at 135 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/45/maven-plugins-45.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-plugins/45/maven-plugins-45.pom (8.4 kB at 101 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/45/maven-parent-45.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/maven-parent/45/maven-parent-45.pom (53 kB at 557 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/35/apache-35.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/apache/35/apache-35.pom (24 kB at 289 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/groovy/groovy-bom/4.0.27/groovy-bom-4.0.27.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/groovy/groovy-bom/4.0.27/groovy-bom-4.0.27.pom (27 kB at 227 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.13.1/junit-bom-5.13.1.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/junit/junit-bom/5.13.1/junit-bom-5.13.1.pom (5.6 kB at 72 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-invoker-plugin/3.9.1/maven-invoker-plugin-3.9.1.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-invoker-plugin/3.9.1/maven-invoker-plugin-3.9.1.jar (141 kB at 1.2 MB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-javadoc-plugin/3.11.3/maven-javadoc-plugin-3.11.3.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-javadoc-plugin/3.11.3/maven-javadoc-plugin-3.11.3.pom (21 kB at 274 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-javadoc-plugin/3.11.3/maven-javadoc-plugin-3.11.3.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-javadoc-plugin/3.11.3/maven-javadoc-plugin-3.11.3.jar (529 kB at 2.5 MB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-source-plugin/3.3.1/maven-source-plugin-3.3.1.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-source-plugin/3.3.1/maven-source-plugin-3.3.1.pom (6.7 kB at 98 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-source-plugin/3.3.1/maven-source-plugin-3.3.1.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-source-plugin/3.3.1/maven-source-plugin-3.3.1.jar (32 kB at 128 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-war-plugin/3.4.0/maven-war-plugin-3.4.0.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-war-plugin/3.4.0/maven-war-plugin-3.4.0.pom (8.4 kB at 101 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-war-plugin/3.4.0/maven-war-plugin-3.4.0.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-war-plugin/3.4.0/maven-war-plugin-3.4.0.jar (83 kB at 282 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/graalvm/buildtools/native-maven-plugin/0.10.6/native-maven-plugin-0.10.6.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/graalvm/buildtools/native-maven-plugin/0.10.6/native-maven-plugin-0.10.6.pom (2.7 kB at 40 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/graalvm/buildtools/native-maven-plugin/0.10.6/native-maven-plugin-0.10.6.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/graalvm/buildtools/native-maven-plugin/0.10.6/native-maven-plugin-0.10.6.jar (113 kB at 1.1 MB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/versions-maven-plugin/2.18.0/versions-maven-plugin-2.18.0.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/versions-maven-plugin/2.18.0/versions-maven-plugin-2.18.0.pom (12 kB at 110 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/versions/versions/2.18.0/versions-2.18.0.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/versions/versions/2.18.0/versions-2.18.0.pom (15 kB at 90 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/mojo-parent/86/mojo-parent-86.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/mojo-parent/86/mojo-parent-86.pom (37 kB at 319 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/versions-maven-plugin/2.18.0/versions-maven-plugin-2.18.0.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/versions-maven-plugin/2.18.0/versions-maven-plugin-2.18.0.jar (299 kB at 1.3 MB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/xml-maven-plugin/1.1.0/xml-maven-plugin-1.1.0.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/xml-maven-plugin/1.1.0/xml-maven-plugin-1.1.0.pom (8.5 kB at 85 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/mojo-parent/75/mojo-parent-75.pom Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/mojo-parent/75/mojo-parent-75.pom (36 kB at 176 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/xml-maven-plugin/1.1.0/xml-maven-plugin-1.1.0.jar Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/xml-maven-plugin/1.1.0/xml-maven-plugin-1.1.0.jar (65 kB at 552 kB/s) Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-metadata.xml Downloading from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/maven-metadata.xml Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/apache/maven/plugins/maven-metadata.xml (10 kB at 108 kB/s) Downloaded from aliyunmaven: https://maven.aliyun.com/repository/public/org/codehaus/mojo/maven-metadata.xml (21 kB at 130 kB/s) [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary for isdp-boot3 0.0.1-SNAPSHOT: [INFO] [INFO] mis-common ......................................... SKIPPED [INFO] isdp-boot3 ......................................... SKIPPED [INFO] mis-pos ............................................ SKIPPED [INFO] mis-web ............................................ SKIPPED [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 7.983 s [INFO] Finished at: 2025-09-25T10:58:33+08:00 [INFO] ------------------------------------------------------------------------ [ERROR] No plugin found for prefix '.springframework' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (D:\develop\apache-maven-3.9.11\mvn_repo), aliyunmaven (https://maven.aliyun.com/repository/public)] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/NoPluginFoundForPrefixException
09-26
"C:\Program Files\Java\jdk1.8.0_202\bin\java.exe" -Dmaven.multiModuleProjectDirectory=C:\JavaProject\vehicle "-Dmaven.home=C:\Program Files\JetBrains\IntelliJ IDEA 2022.1.2\plugins\maven\lib\maven3" "-Dclassworlds.conf=C:\Program Files\JetBrains\IntelliJ IDEA 2022.1.2\plugins\maven\lib\maven3\bin\m2.conf" "-Dmaven.ext.class.path=C:\Program Files\JetBrains\IntelliJ IDEA 2022.1.2\plugins\maven\lib\maven-event-listener.jar" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2022.1.2\lib\idea_rt.jar=58138:C:\Program Files\JetBrains\IntelliJ IDEA 2022.1.2\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\JetBrains\IntelliJ IDEA 2022.1.2\plugins\maven\lib\maven3\boot\plexus-classworlds-2.6.0.jar;C:\Program Files\JetBrains\IntelliJ IDEA 2022.1.2\plugins\maven\lib\maven3\boot\plexus-classworlds.license" org.codehaus.classworlds.Launcher -Didea.version=2022.1.2 -s C:\Maven\apache-maven-3.9.9\conf\settings.xml -Dmaven.repo.local=C:\Maven\apache-maven-3.9.9\repository dependency:tree -Dincludes=org.apache.poi [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Reactor Build Order: [INFO] [INFO] msc-vehicle [pom] [INFO] msc-vehicle-client [jar] [INFO] msc-vehicle-common [jar] [INFO] msc-vehicle-domain [jar] [INFO] msc-vehicle-config [jar] [INFO] msc-vehicle-infrastructure [jar] [INFO] msc-vehicle-app [jar] [INFO] msc-vehicle-adapter [jar] [INFO] start [jar] [INFO] [INFO] ---------------------< com.zeekrlife:msc-vehicle >---------------------- [INFO] Building msc-vehicle 1.0-SNAPSHOT [1/9] [INFO] --------------------------------[ pom ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ msc-vehicle --- [INFO] [INFO] ------------------< com.zeekrlife:msc-vehicle-client >------------------ [INFO] Building msc-vehicle-client 1.0-SNAPSHOT [2/9] [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ msc-vehicle-client --- [INFO] [INFO] ------------------< com.zeekrlife:msc-vehicle-common >------------------ [INFO] Building msc-vehicle-common 1.0-SNAPSHOT [3/9] [INFO] --------------------------------[ jar ]--------------------------------- Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/github/dsc-cmt/cmt-statemachine/1.3.2-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/github/dsc-cmt/cmt-statemachine/1.3.2-SNAPSHOT/maven-metadata.xml (998 B at 3.2 kB/s) [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ msc-vehicle-common --- [INFO] com.zeekrlife:msc-vehicle-common:jar:1.0-SNAPSHOT [INFO] +- com.zeekr.cloud:flycloud-common:jar:7.17.0-RELEASE:compile [INFO] | +- org.apache.poi:poi:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml-lite:jar:5.2.2:compile [INFO] \- com.alibaba:easyexcel:jar:3.3.2:compile [INFO] \- com.alibaba:easyexcel-core:jar:3.3.2:compile [INFO] \- org.apache.poi:poi-ooxml-schemas:jar:4.1.2:compile [INFO] [INFO] ------------------< com.zeekrlife:msc-vehicle-domain >------------------ [INFO] Building msc-vehicle-domain 1.0-SNAPSHOT [4/9] [INFO] --------------------------------[ jar ]--------------------------------- Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/msc-vehicle-client/1.0-SNAPSHOT/maven-metadata.xml Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/msc-vehicle-common/1.0-SNAPSHOT/maven-metadata.xml [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ msc-vehicle-domain --- [INFO] com.zeekrlife:msc-vehicle-domain:jar:1.0-SNAPSHOT [INFO] \- com.zeekrlife:msc-vehicle-common:jar:1.0-SNAPSHOT:compile [INFO] +- com.zeekr.cloud:flycloud-common:jar:7.17.0-RELEASE:compile [INFO] | +- org.apache.poi:poi:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml-lite:jar:5.2.2:compile [INFO] \- com.alibaba:easyexcel:jar:3.3.2:compile [INFO] \- com.alibaba:easyexcel-core:jar:3.3.2:compile [INFO] \- org.apache.poi:poi-ooxml-schemas:jar:4.1.2:compile [INFO] [INFO] ------------------< com.zeekrlife:msc-vehicle-config >------------------ [INFO] Building msc-vehicle-config 1.0-SNAPSHOT [5/9] [INFO] --------------------------------[ jar ]--------------------------------- Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-parent/7.16.4-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-parent/7.16.4-SNAPSHOT/maven-metadata.xml (609 B at 9.4 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-boot-dependencies/7.16.4-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-boot-dependencies/7.16.4-SNAPSHOT/maven-metadata.xml (620 B at 9.1 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-dependencies/7.16.4-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-dependencies/7.16.4-SNAPSHOT/maven-metadata.xml (615 B at 8.5 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-dependencies-parent/7.16.4-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-dependencies-parent/7.16.4-SNAPSHOT/maven-metadata.xml (622 B at 7.2 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-commons-dependencies/7.16.4-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-commons-dependencies/7.16.4-SNAPSHOT/maven-metadata.xml (623 B at 9.9 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-plugin-microservice-dependencies/7.16.4-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/cloud/flycloud-plugin-microservice-dependencies/7.16.4-SNAPSHOT/maven-metadata.xml (635 B at 10 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/nimbusds/lang-tag/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/nimbusds/lang-tag/maven-metadata.xml (667 B at 2.7 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/nimbusds/nimbus-jose-jwt/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/nimbusds/nimbus-jose-jwt/maven-metadata.xml (11 kB at 50 kB/s) [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ msc-vehicle-config --- [INFO] com.zeekrlife:msc-vehicle-config:jar:1.0-SNAPSHOT [INFO] +- com.zeekrlife:msc-vehicle-common:jar:1.0-SNAPSHOT:compile [INFO] | \- com.alibaba:easyexcel:jar:3.3.2:compile [INFO] | \- com.alibaba:easyexcel-core:jar:3.3.2:compile [INFO] | \- org.apache.poi:poi-ooxml-schemas:jar:4.1.2:compile [INFO] \- com.zeekr.cloud:flycloud-common:jar:7.17.0-RELEASE:compile [INFO] +- org.apache.poi:poi:jar:5.2.2:compile [INFO] \- org.apache.poi:poi-ooxml:jar:5.2.2:compile [INFO] \- org.apache.poi:poi-ooxml-lite:jar:5.2.2:compile [INFO] [INFO] --------------< com.zeekrlife:msc-vehicle-infrastructure >-------------- [INFO] Building msc-vehicle-infrastructure 1.0-SNAPSHOT [6/9] [INFO] --------------------------------[ jar ]--------------------------------- Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/msc-vehicle-domain/1.0-SNAPSHOT/maven-metadata.xml Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/msc-vehicle-config/1.0-SNAPSHOT/maven-metadata.xml Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/overseas/commons/1.4.0-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/overseas/commons/1.4.0-SNAPSHOT/maven-metadata.xml (782 B at 13 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/overseas/parent/1.4.0-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/overseas/parent/1.4.0-SNAPSHOT/maven-metadata.xml (607 B at 7.4 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/seaking-starter-parent/1.0.0-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/seaking-starter-parent/1.0.0-SNAPSHOT/maven-metadata.xml (610 B at 5.3 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/seaking-web-boot-starter/1.0.0-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/seaking-web-boot-starter/1.0.0-SNAPSHOT/maven-metadata.xml (1.2 kB at 19 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/seaking-web/1.0.0-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/seaking-web/1.0.0-SNAPSHOT/maven-metadata.xml (1.2 kB at 24 kB/s) Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/seaking-data/1.0.0-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/seaking-data/1.0.0-SNAPSHOT/maven-metadata.xml (1.2 kB at 19 kB/s) [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ msc-vehicle-infrastructure --- [INFO] com.zeekrlife:msc-vehicle-infrastructure:jar:1.0-SNAPSHOT [INFO] +- com.zeekr.cloud:flycloud-common:jar:7.17.0-RELEASE:compile [INFO] | +- org.apache.poi:poi:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml-lite:jar:5.2.2:compile [INFO] \- cn.afterturn:easypoi-spring-boot-starter:jar:4.4.0:compile [INFO] \- cn.afterturn:easypoi-web:jar:4.4.0:compile [INFO] \- cn.afterturn:easypoi-base:jar:4.4.0:compile [INFO] \- org.apache.poi:poi-ooxml-schemas:jar:4.1.1:compile [INFO] [INFO] -------------------< com.zeekrlife:msc-vehicle-app >-------------------- [INFO] Building msc-vehicle-app 1.0-SNAPSHOT [7/9] [INFO] --------------------------------[ jar ]--------------------------------- Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/msc-vehicle-infrastructure/1.0-SNAPSHOT/maven-metadata.xml Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/ucd/eisenhower-api/2.7.0-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekr/ucd/eisenhower-api/2.7.0-SNAPSHOT/maven-metadata.xml (1.2 kB at 18 kB/s) [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ msc-vehicle-app --- [INFO] com.zeekrlife:msc-vehicle-app:jar:1.0-SNAPSHOT [INFO] +- com.zeekrlife:msc-vehicle-infrastructure:jar:1.0-SNAPSHOT:compile [INFO] | \- com.zeekr.cloud:flycloud-common:jar:7.17.0-RELEASE:compile [INFO] | +- org.apache.poi:poi:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml-lite:jar:5.2.2:compile [INFO] \- com.alibaba:easyexcel:jar:3.3.2:compile [INFO] \- com.alibaba:easyexcel-core:jar:3.3.2:compile [INFO] \- org.apache.poi:poi-ooxml-schemas:jar:4.1.2:compile [INFO] [INFO] -----------------< com.zeekrlife:msc-vehicle-adapter >------------------ [INFO] Building msc-vehicle-adapter 1.0-SNAPSHOT [8/9] [INFO] --------------------------------[ jar ]--------------------------------- Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/msc-vehicle-app/1.0-SNAPSHOT/maven-metadata.xml [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ msc-vehicle-adapter --- [INFO] com.zeekrlife:msc-vehicle-adapter:jar:1.0-SNAPSHOT [INFO] \- com.zeekrlife:msc-vehicle-app:jar:1.0-SNAPSHOT:compile [INFO] +- com.zeekrlife:msc-vehicle-infrastructure:jar:1.0-SNAPSHOT:compile [INFO] | \- com.zeekr.cloud:flycloud-common:jar:7.17.0-RELEASE:compile [INFO] | +- org.apache.poi:poi:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml:jar:5.2.2:compile [INFO] | \- org.apache.poi:poi-ooxml-lite:jar:5.2.2:compile [INFO] \- com.alibaba:easyexcel:jar:3.3.2:compile [INFO] \- com.alibaba:easyexcel-core:jar:3.3.2:compile [INFO] \- org.apache.poi:poi-ooxml-schemas:jar:4.1.2:compile [INFO] [INFO] ------------------------< com.zeekrlife:start >------------------------- [INFO] Building start 1.0-SNAPSHOT [9/9] [INFO] --------------------------------[ jar ]--------------------------------- Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/msc-vehicle-adapter/1.0-SNAPSHOT/maven-metadata.xml Downloading from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/dynamic-update-starter/1.0.3-SNAPSHOT/maven-metadata.xml Downloaded from zeekr-public: http://devops-maven.zeekrlife.com/repository/maven-public/com/zeekrlife/dynamic-update-starter/1.0.3-SNAPSHOT/maven-metadata.xml (999 B at 14 kB/s) [INFO] [INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ start --- [INFO] com.zeekrlife:start:jar:1.0-SNAPSHOT [INFO] +- com.zeekrlife:msc-vehicle-adapter:jar:1.0-SNAPSHOT:compile [INFO] | \- com.zeekrlife:msc-vehicle-app:jar:1.0-SNAPSHOT:compile [INFO] | \- com.alibaba:easyexcel:jar:3.3.2:compile [INFO] | \- com.alibaba:easyexcel-core:jar:3.3.2:compile [INFO] | \- org.apache.poi:poi-ooxml-schemas:jar:4.1.2:compile [INFO] \- com.zeekrlife:msc-vehicle-config:jar:1.0-SNAPSHOT:compile [INFO] \- com.zeekr.cloud:flycloud-common:jar:7.17.0-RELEASE:compile [INFO] +- org.apache.poi:poi:jar:5.2.2:compile [INFO] \- org.apache.poi:poi-ooxml:jar:5.2.2:compile [INFO] \- org.apache.poi:poi-ooxml-lite:jar:5.2.2:compile [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary for msc-vehicle 1.0-SNAPSHOT: [INFO] [INFO] msc-vehicle ........................................ SUCCESS [ 0.989 s] [INFO] msc-vehicle-client ................................. SUCCESS [ 0.039 s] [INFO] msc-vehicle-common ................................. SUCCESS [ 2.312 s] [INFO] msc-vehicle-domain ................................. SUCCESS [ 0.209 s] [INFO] msc-vehicle-config ................................. SUCCESS [ 2.281 s] [INFO] msc-vehicle-infrastructure ......................... SUCCESS [ 1.369 s] [INFO] msc-vehicle-app .................................... SUCCESS [ 0.447 s] [INFO] msc-vehicle-adapter ................................ SUCCESS [ 0.215 s] [INFO] start .............................................. SUCCESS [ 0.302 s] [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 8.836 s [INFO] Finished at: 2025-07-16T12:49:35+08:00 [INFO] ------------------------------------------------------------------------ 进程已结束,退出代码0
07-17
D:\dev\ide\IntelliJ IDEA 2025.2.1\plugins\maven\lib\maven3\bin\mvn.cmd -Didea.version=2025.2.1 -Dmaven.ext.class.path=D:\dev\ide\IntelliJ IDEA 2025.2.1\plugins\maven\lib\maven-event-listener.jar -Djansi.passthrough=true -Dstyle.color=always -Dmaven.repo.local=C:\Users\66928\.m2\repository dependency:tree -f pom.xml [INFO] Scanning for projects... Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.pom (9.1 kB at 12 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-antrun-plugin/3.1.0/maven-antrun-plugin-3.1.0.jar (41 kB at 179 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/3.7.1/maven-assembly-plugin-3.7.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/3.7.1/maven-assembly-plugin-3.7.1.pom (15 kB at 68 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/3.7.1/maven-assembly-plugin-3.7.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/3.7.1/maven-assembly-plugin-3.7.1.jar (240 kB at 395 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/3.7.0/maven-dependency-plugin-3.7.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/3.7.0/maven-dependency-plugin-3.7.0.pom (19 kB at 80 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/3.7.0/maven-dependency-plugin-3.7.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-dependency-plugin/3.7.0/maven-dependency-plugin-3.7.0.jar (207 kB at 819 kB/s) [INFO] [INFO] --------------------< com.example:bigdata-project >--------------------- [INFO] Building BigDataProject 1.0.0 [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- dependency:3.7.0:tree (default-cli) @ bigdata-project --- Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.pom (1.5 kB at 6.7 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.12.0/doxia-1.12.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.12.0/doxia-1.12.0.pom (18 kB at 82 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.pom (1.5 kB at 6.9 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.pom (7.6 kB at 36 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.pom (20 kB at 86 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.14.1/maven-dependency-analyzer-1.14.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.14.1/maven-dependency-analyzer-1.14.1.pom (6.4 kB at 27 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/42/maven-shared-components-42.pom (3.8 kB at 17 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-bom/3.25.3/assertj-bom-3.25.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-bom/3.25.3/assertj-bom-3.25.3.pom (3.7 kB at 17 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.pom (2.4 kB at 11 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.pom (7.0 kB at 32 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.pom (2.8 kB at 13 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver/1.4.1/maven-resolver-1.4.1.pom (18 kB at 82 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.pom (2.6 kB at 12 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.pom (11 kB at 52 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.1.0/maven-common-artifact-filters-3.1.0.pom (5.3 kB at 24 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.12.0/doxia-sink-api-1.12.0.jar (12 kB at 53 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.12.0/doxia-logging-api-1.12.0.jar (12 kB at 54 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (502 kB at 960 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/3.2.0/maven-reporting-impl-3.2.0.jar (20 kB at 33 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.11.1/doxia-decoration-model-1.11.1.jar (60 kB at 102 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/3.1.1/maven-reporting-api-3.1.1.jar (11 kB at 18 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-text/1.12.0/commons-text-1.12.0.jar (251 kB at 316 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-integration-tools/1.11.1/doxia-integration-tools-1.11.1.jar (47 kB at 58 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.11.1/doxia-core-1.11.1.jar (218 kB at 243 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.11.1/doxia-site-renderer-1.11.1.jar (65 kB at 66 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-skin-model/1.11.1/doxia-skin-model-1.11.1.jar (16 kB at 16 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.11.1/doxia-module-xhtml-1.11.1.jar (17 kB at 17 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml5/1.11.1/doxia-module-xhtml5-1.11.1.jar (18 kB at 16 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.14/httpcore-4.4.14.jar (328 kB at 273 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-velocity/1.2/plexus-velocity-1.2.jar (8.1 kB at 6.7 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity/1.7/velocity-1.7.jar (450 kB at 342 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar (189 kB at 141 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-chain/commons-chain/1.1/commons-chain-1.1.jar (90 kB at 63 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/velocity/velocity-tools/2.0/velocity-tools-2.0.jar (347 kB at 238 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/oro/oro/2.0.8/oro-2.0.8.jar (65 kB at 42 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/dom4j/dom4j/1.1/dom4j-1.1.jar (457 kB at 287 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/4.9.2/plexus-archiver-4.9.2.jar (225 kB at 139 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar (58 kB at 32 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.jar (365 kB at 199 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/tukaani/xz/1.9/xz-1.9.jar (116 kB at 63 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.26.1/commons-compress-1.26.1.jar (1.1 MB at 555 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar Downloaded from central: https://repo.maven.apache.org/maven2/commons-io/commons-io/2.15.1/commons-io-2.15.1.jar (501 kB at 244 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.14.1/maven-dependency-analyzer-1.14.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.4.2/plexus-io-3.4.2.jar (79 kB at 38 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/4.0.1/plexus-utils-4.0.1.jar (193 kB at 92 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-i18n/1.0-beta-10/plexus-i18n-1.0-beta-10.jar (12 kB at 5.5 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-analyzer/1.14.1/maven-dependency-analyzer-1.14.1.jar (42 kB at 18 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.3.0/maven-dependency-tree-3.3.0.jar (43 kB at 19 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.7/asm-9.7.jar (125 kB at 54 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.3.2/maven-common-artifact-filters-3.3.2.jar (58 kB at 25 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/2.0.0/plexus-component-annotations-2.0.0.jar (4.2 kB at 1.7 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.13.1/maven-artifact-transfer-0.13.1.jar (159 kB at 63 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-util/1.4.1/maven-resolver-util-1.4.1.jar (168 kB at 66 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/resolver/maven-resolver-api/1.4.1/maven-resolver-api-1.4.1.jar (149 kB at 57 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/com/github/luben/zstd-jni/1.5.5-11/zstd-jni-1.5.5-11.jar (6.8 MB at 2.5 MB/s) [INFO] com.example:bigdata-project:jar:1.0.0 [INFO] +- org.apache.hadoop:hadoop-common:jar:3.3.6:compile [INFO] | +- org.apache.hadoop.thirdparty:hadoop-shaded-protobuf_3_7:jar:1.1.1:compile [INFO] | +- org.apache.hadoop:hadoop-annotations:jar:3.3.6:compile [INFO] | | \- jdk.tools:jdk.tools:jar:1.8:system [INFO] | +- org.apache.hadoop.thirdparty:hadoop-shaded-guava:jar:1.1.1:compile [INFO] | +- com.google.guava:guava:jar:27.0-jre:compile [INFO] | | +- com.google.guava:failureaccess:jar:1.0:compile [INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile [INFO] | | +- org.checkerframework:checker-qual:jar:2.5.2:compile [INFO] | | +- com.google.j2objc:j2objc-annotations:jar:1.1:compile [INFO] | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.17:compile [INFO] | +- commons-cli:commons-cli:jar:1.2:compile [INFO] | +- org.apache.commons:commons-math3:jar:3.1.1:compile [INFO] | +- org.apache.httpcomponents:httpclient:jar:4.5.13:compile [INFO] | | \- org.apache.httpcomponents:httpcore:jar:4.4.13:compile [INFO] | +- commons-codec:commons-codec:jar:1.15:compile [INFO] | +- commons-io:commons-io:jar:2.8.0:compile [INFO] | +- commons-net:commons-net:jar:3.9.0:compile [INFO] | +- commons-collections:commons-collections:jar:3.2.2:compile [INFO] | +- javax.servlet:javax.servlet-api:jar:3.1.0:compile [INFO] | +- jakarta.activation:jakarta.activation-api:jar:1.2.1:compile [INFO] | +- org.eclipse.jetty:jetty-server:jar:9.4.51.v20230217:compile [INFO] | | +- org.eclipse.jetty:jetty-http:jar:9.4.51.v20230217:compile [INFO] | | \- org.eclipse.jetty:jetty-io:jar:9.4.51.v20230217:compile [INFO] | +- org.eclipse.jetty:jetty-util:jar:9.4.51.v20230217:compile [INFO] | +- org.eclipse.jetty:jetty-servlet:jar:9.4.51.v20230217:compile [INFO] | | +- org.eclipse.jetty:jetty-security:jar:9.4.51.v20230217:compile [INFO] | | \- org.eclipse.jetty:jetty-util-ajax:jar:9.4.51.v20230217:compile [INFO] | +- org.eclipse.jetty:jetty-webapp:jar:9.4.51.v20230217:compile [INFO] | | \- org.eclipse.jetty:jetty-xml:jar:9.4.51.v20230217:compile [INFO] | +- javax.servlet.jsp:jsp-api:jar:2.1:runtime [INFO] | +- com.sun.jersey:jersey-core:jar:1.19.4:compile [INFO] | | \- javax.ws.rs:jsr311-api:jar:1.1.1:compile [INFO] | +- com.sun.jersey:jersey-servlet:jar:1.19.4:compile [INFO] | +- com.github.pjfanning:jersey-json:jar:1.20:compile [INFO] | | +- org.codehaus.jettison:jettison:jar:1.1:compile [INFO] | | \- com.sun.xml.bind:jaxb-impl:jar:2.2.3-1:compile [INFO] | +- com.sun.jersey:jersey-server:jar:1.19.4:compile [INFO] | +- commons-logging:commons-logging:jar:1.1.3:compile [INFO] | +- ch.qos.reload4j:reload4j:jar:1.2.22:compile [INFO] | +- commons-beanutils:commons-beanutils:jar:1.9.4:compile [INFO] | +- org.apache.commons:commons-configuration2:jar:2.8.0:compile [INFO] | +- org.apache.commons:commons-lang3:jar:3.12.0:compile [INFO] | +- org.apache.commons:commons-text:jar:1.10.0:compile [INFO] | +- org.slf4j:slf4j-api:jar:1.7.36:compile [INFO] | +- org.slf4j:slf4j-reload4j:jar:1.7.36:compile [INFO] | +- org.apache.avro:avro:jar:1.7.7:compile [INFO] | | +- org.codehaus.jackson:jackson-core-asl:jar:1.9.13:compile [INFO] | | +- org.codehaus.jackson:jackson-mapper-asl:jar:1.9.13:compile [INFO] | | \- com.thoughtworks.paranamer:paranamer:jar:2.3:compile [INFO] | +- com.google.re2j:re2j:jar:1.1:compile [INFO] | +- com.google.code.gson:gson:jar:2.9.0:compile [INFO] | +- org.apache.hadoop:hadoop-auth:jar:3.3.6:compile [INFO] | | +- com.nimbusds:nimbus-jose-jwt:jar:9.8.1:compile [INFO] | | | \- com.github.stephenc.jcip:jcip-annotations:jar:1.0-1:compile [INFO] | | +- org.apache.curator:curator-framework:jar:5.2.0:compile [INFO] | | \- org.apache.kerby:kerb-simplekdc:jar:1.0.1:compile [INFO] | | +- org.apache.kerby:kerb-client:jar:1.0.1:compile [INFO] | | | +- org.apache.kerby:kerby-config:jar:1.0.1:compile [INFO] | | | +- org.apache.kerby:kerb-common:jar:1.0.1:compile [INFO] | | | | \- org.apache.kerby:kerb-crypto:jar:1.0.1:compile [INFO] | | | +- org.apache.kerby:kerb-util:jar:1.0.1:compile [INFO] | | | \- org.apache.kerby:token-provider:jar:1.0.1:compile [INFO] | | \- org.apache.kerby:kerb-admin:jar:1.0.1:compile [INFO] | | +- org.apache.kerby:kerb-server:jar:1.0.1:compile [INFO] | | | \- org.apache.kerby:kerb-identity:jar:1.0.1:compile [INFO] | | \- org.apache.kerby:kerby-xdr:jar:1.0.1:compile [INFO] | +- com.jcraft:jsch:jar:0.1.55:compile [INFO] | +- org.apache.curator:curator-client:jar:5.2.0:compile [INFO] | +- org.apache.curator:curator-recipes:jar:5.2.0:compile [INFO] | +- com.google.code.findbugs:jsr305:jar:3.0.2:compile [INFO] | +- org.apache.zookeeper:zookeeper:jar:3.6.3:compile [INFO] | | +- org.apache.zookeeper:zookeeper-jute:jar:3.6.3:compile [INFO] | | +- io.netty:netty-handler:jar:4.1.63.Final:compile [INFO] | | | +- io.netty:netty-common:jar:4.1.63.Final:compile [INFO] | | | +- io.netty:netty-resolver:jar:4.1.63.Final:compile [INFO] | | | +- io.netty:netty-buffer:jar:4.1.63.Final:compile [INFO] | | | +- io.netty:netty-transport:jar:4.1.63.Final:compile [INFO] | | | \- io.netty:netty-codec:jar:4.1.63.Final:compile [INFO] | | +- io.netty:netty-transport-native-epoll:jar:4.1.63.Final:compile [INFO] | | | \- io.netty:netty-transport-native-unix-common:jar:4.1.63.Final:compile [INFO] | | +- org.slf4j:slf4j-log4j12:jar:1.7.25:compile [INFO] | | \- log4j:log4j:jar:1.2.17:compile [INFO] | +- io.dropwizard.metrics:metrics-core:jar:3.2.4:compile [INFO] | +- org.apache.commons:commons-compress:jar:1.21:compile [INFO] | +- org.apache.kerby:kerb-core:jar:1.0.1:compile [INFO] | | \- org.apache.kerby:kerby-pkix:jar:1.0.1:compile [INFO] | | +- org.apache.kerby:kerby-asn1:jar:1.0.1:compile [INFO] | | \- org.apache.kerby:kerby-util:jar:1.0.1:compile [INFO] | +- com.fasterxml.jackson.core:jackson-databind:jar:2.12.7.1:compile [INFO] | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.12.7:compile [INFO] | | \- com.fasterxml.jackson.core:jackson-core:jar:2.12.7:compile [INFO] | +- org.codehaus.woodstox:stax2-api:jar:4.2.1:compile [INFO] | +- com.fasterxml.woodstox:woodstox-core:jar:5.4.0:compile [INFO] | +- dnsjava:dnsjava:jar:2.1.7:compile [INFO] | \- org.xerial.snappy:snappy-java:jar:1.1.8.2:compile [INFO] +- org.apache.hadoop:hadoop-mapreduce-client-core:jar:3.3.6:compile [INFO] | +- org.apache.hadoop:hadoop-yarn-client:jar:3.3.6:compile [INFO] | | +- org.eclipse.jetty.websocket:websocket-client:jar:9.4.51.v20230217:compile [INFO] | | | +- org.eclipse.jetty:jetty-client:jar:9.4.51.v20230217:compile [INFO] | | | \- org.eclipse.jetty.websocket:websocket-common:jar:9.4.51.v20230217:compile [INFO] | | | \- org.eclipse.jetty.websocket:websocket-api:jar:9.4.51.v20230217:compile [INFO] | | +- org.apache.hadoop:hadoop-yarn-api:jar:3.3.6:compile [INFO] | | \- org.jline:jline:jar:3.9.0:compile [INFO] | +- org.apache.hadoop:hadoop-yarn-common:jar:3.3.6:compile [INFO] | | +- javax.xml.bind:jaxb-api:jar:2.2.11:compile [INFO] | | +- com.sun.jersey:jersey-client:jar:1.19.4:compile [INFO] | | +- com.google.inject:guice:jar:4.0:compile [INFO] | | | +- javax.inject:javax.inject:jar:1:compile [INFO] | | | \- aopalliance:aopalliance:jar:1.0:compile [INFO] | | +- com.sun.jersey.contribs:jersey-guice:jar:1.19.4:compile [INFO] | | +- com.fasterxml.jackson.module:jackson-module-jaxb-annotations:jar:2.12.7:compile [INFO] | | | \- jakarta.xml.bind:jakarta.xml.bind-api:jar:2.3.2:compile [INFO] | | \- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:jar:2.12.7:compile [INFO] | | \- com.fasterxml.jackson.jaxrs:jackson-jaxrs-base:jar:2.12.7:compile [INFO] | +- org.apache.hadoop:hadoop-hdfs-client:jar:3.3.6:compile [INFO] | | +- com.squareup.okhttp3:okhttp:jar:4.9.3:compile [INFO] | | | \- com.squareup.okio:okio:jar:2.8.0:compile [INFO] | | +- org.jetbrains.kotlin:kotlin-stdlib:jar:1.4.10:compile [INFO] | | \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.4.10:compile [INFO] | +- com.google.inject.extensions:guice-servlet:jar:4.0:compile [INFO] | \- io.netty:netty:jar:3.10.6.Final:compile [INFO] +- org.apache.hadoop:hadoop-mapreduce-client-common:jar:3.3.6:compile [INFO] +- org.apache.hbase:hbase-client:jar:2.4.18:compile [INFO] | +- org.apache.hbase.thirdparty:hbase-shaded-protobuf:jar:4.1.5:compile [INFO] | +- org.apache.hbase:hbase-common:jar:2.4.18:compile [INFO] | | +- org.apache.hbase:hbase-logging:jar:2.4.18:compile [INFO] | | +- org.apache.hbase.thirdparty:hbase-shaded-gson:jar:4.1.5:compile [INFO] | | \- org.apache.hbase.thirdparty:hbase-unsafe:jar:4.1.5:compile [INFO] | +- org.apache.hbase:hbase-hadoop-compat:jar:2.4.18:compile [INFO] | | \- org.apache.hbase:hbase-metrics-api:jar:2.4.18:compile [INFO] | +- org.apache.hbase:hbase-hadoop2-compat:jar:2.4.18:compile [INFO] | | +- org.apache.hbase:hbase-metrics:jar:2.4.18:compile [INFO] | | \- javax.activation:javax.activation-api:jar:1.2.0:runtime [INFO] | +- org.apache.hbase:hbase-protocol-shaded:jar:2.4.18:compile [INFO] | +- org.apache.hbase:hbase-protocol:jar:2.4.18:compile [INFO] | +- org.apache.hbase.thirdparty:hbase-shaded-miscellaneous:jar:4.1.5:compile [INFO] | | \- com.google.errorprone:error_prone_annotations:jar:2.21.1:compile [INFO] | +- org.apache.hbase.thirdparty:hbase-shaded-netty:jar:4.1.5:compile [INFO] | +- org.apache.htrace:htrace-core4:jar:4.2.0-incubating:compile [INFO] | +- org.jruby.jcodings:jcodings:jar:1.0.55:compile [INFO] | +- org.jruby.joni:joni:jar:2.1.31:compile [INFO] | +- org.apache.commons:commons-crypto:jar:1.0.0:compile [INFO] | \- org.apache.yetus:audience-annotations:jar:0.13.0:compile [INFO] +- org.apache.phoenix:phoenix-client-hbase-2.4:jar:5.1.3:compile [INFO] \- com.google.protobuf:protobuf-java:jar:2.5.0:compile [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 10.727 s [INFO] Finished at: 2025-10-09T17:03:53+08:00 [INFO] ------------------------------------------------------------------------
10-10
[root@yfw ~]# cd /opt/openfire/enterprise/Spark-master [root@yfw Spark-master]# scp root@124.71.230.244:/opt/openfire/enterprise/Spark-master/spark-client.zip ./spark-client.zip The authenticity of host '124.71.230.244 (124.71.230.244)' can't be established. ECDSA key fingerprint is SHA256:U5XbNIctslcKEL1Lv354cOWi7Hsq2syxemRKcCOXqug. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added '124.71.230.244' (ECDSA) to the list of known hosts. spark-client.zip 100% 68MB 353.3MB/s 00:00 [root@yfw Spark-master]# unzip spark-client.zip -d spark-client-local Archive: spark-client.zip creating: spark-client-local/spark-client/distribution/ creating: spark-client-local/spark-client/distribution/resources/ creating: spark-client-local/spark-client/distribution/resources/sounds/ inflating: spark-client-local/spark-client/distribution/resources/sounds/presence_changed.wav inflating: spark-client-local/spark-client/distribution/resources/sounds/incoming.wav inflating: spark-client-local/spark-client/distribution/resources/sounds/outgoing.wav inflating: spark-client-local/spark-client/distribution/resources/sounds/bell.wav inflating: spark-client-local/spark-client/distribution/resources/sounds/chat_request.wav inflating: spark-client-local/spark-client/distribution/resources/systeminfo.dll inflating: spark-client-local/spark-client/distribution/resources/Info.plist inflating: spark-client-local/spark-client/distribution/resources/jniwrap.lic inflating: spark-client-local/spark-client/distribution/resources/startup.bat inflating: spark-client-local/spark-client/distribution/resources/jniwrap.dll inflating: spark-client-local/spark-client/distribution/resources/startup.sh creating: spark-client-local/spark-client/distribution/plugins/ inflating: spark-client-local/spark-client/distribution/plugins/growl.jar inflating: spark-client-local/spark-client/distribution/plugins/fileupload.jar inflating: spark-client-local/spark-client/distribution/plugins/roar.jar inflating: spark-client-local/spark-client/distribution/plugins/meet.jar inflating: spark-client-local/spark-client/distribution/plugins/tictactoe.jar inflating: spark-client-local/spark-client/distribution/plugins/fastpath.jar inflating: spark-client-local/spark-client/distribution/plugins/transferguard.jar inflating: spark-client-local/spark-client/distribution/plugins/translator.jar inflating: spark-client-local/spark-client/distribution/plugins/flashing.jar inflating: spark-client-local/spark-client/distribution/plugins/apple.jar inflating: spark-client-local/spark-client/distribution/plugins/spelling.jar inflating: spark-client-local/spark-client/distribution/plugins/reversi.jar creating: spark-client-local/spark-client/distribution/documentation/ inflating: spark-client-local/spark-client/distribution/documentation/ide-vscode-setup.html inflating: spark-client-local/spark-client/distribution/documentation/ide-intellij-setup.html creating: spark-client-local/spark-client/distribution/documentation/spark guide/ creating: spark-client-local/spark-client/distribution/documentation/spark guide/images/ extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image021.png extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image033.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/images/image015.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/images/image003.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/images/image027.png extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image007.png extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image001.png extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image009.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/images/image031.png extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image011.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/images/image025.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/images/image017.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/images/image029.png extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image023.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/images/filelist.xml extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image013.png extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image005.png extracting: spark-client-local/spark-client/distribution/documentation/spark guide/images/image019.png inflating: spark-client-local/spark-client/distribution/documentation/spark guide/Spark.default.properties.guide.html inflating: spark-client-local/spark-client/distribution/documentation/spark.doap inflating: spark-client-local/spark-client/distribution/documentation/changelog.html inflating: spark-client-local/spark-client/distribution/documentation/sparkplug_compile.html creating: spark-client-local/spark-client/distribution/documentation/images/ inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-8.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/VSCode-4.png inflating: spark-client-local/spark-client/distribution/documentation/images/VSCode-6.png inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-3.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/VSCode-2.png inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-10.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/login-dialog.png inflating: spark-client-local/spark-client/distribution/documentation/images/eclipse-maven-step-1.png inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-6.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-1.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/contact-list.png inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-9.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-5.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/VSCode-1.png inflating: spark-client-local/spark-client/distribution/documentation/images/chat-room.png inflating: spark-client-local/spark-client/distribution/documentation/images/eclipse-maven-step-5.png inflating: spark-client-local/spark-client/distribution/documentation/images/VSCode-5.png inflating: spark-client-local/spark-client/distribution/documentation/images/eclipse-maven-step-6.png inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-2.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/banner-spring.gif inflating: spark-client-local/spark-client/distribution/documentation/images/eclipse-maven-step-2.png inflating: spark-client-local/spark-client/distribution/documentation/images/eclipse-maven-step-3.png inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-7.JPG inflating: spark-client-local/spark-client/distribution/documentation/images/eclipse-maven-step-4.png inflating: spark-client-local/spark-client/distribution/documentation/images/VSCode-3.png extracting: spark-client-local/spark-client/distribution/documentation/images/banner-spark.gif inflating: spark-client-local/spark-client/distribution/documentation/images/IntelliJ-4.JPG inflating: spark-client-local/spark-client/distribution/documentation/sample_plugin_repository.xml inflating: spark-client-local/spark-client/distribution/documentation/changes.xsl inflating: spark-client-local/spark-client/distribution/documentation/ide-eclipse-setup.html inflating: spark-client-local/spark-client/distribution/documentation/style.css inflating: spark-client-local/spark-client/distribution/documentation/LICENSE.html inflating: spark-client-local/spark-client/distribution/documentation/builder.jar inflating: spark-client-local/spark-client/distribution/documentation/sparkplug_dev_guide.html inflating: spark-client-local/spark-client/distribution/documentation/README.html creating: spark-client-local/spark-client/distribution/xtra/ creating: spark-client-local/spark-client/distribution/xtra/emoticons/ extracting: spark-client-local/spark-client/distribution/xtra/emoticons/sparkEmoticonSet.zip extracting: spark-client-local/spark-client/distribution/xtra/emoticons/GTalk.AdiumEmoticonset.zip extracting: spark-client-local/spark-client/distribution/xtra/emoticons/Default.adiumemoticonset.zip extracting: spark-client-local/spark-client/distribution/xtra/emoticons/POPO.adiumemoticonset.zip creating: spark-client-local/spark-client/distribution/lib/ inflating: spark-client-local/spark-client/distribution/lib/jxmpp-jid-1.0.3.jar inflating: spark-client-local/spark-client/distribution/lib/smack-debug-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/bcpkix-jdk18on-1.78.1.jar inflating: spark-client-local/spark-client/distribution/lib/flatlaf-3.1.1.jar inflating: spark-client-local/spark-client/distribution/lib/minidns-core-1.0.5.jar creating: spark-client-local/spark-client/distribution/lib/linux/ inflating: spark-client-local/spark-client/distribution/lib/linux/libcivil.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjng722.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnvpx.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnscreencapture.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnspeex.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnpulseaudio.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnvideo4linux2.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnawtrenderer.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnopus.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnffmpeg.so inflating: spark-client-local/spark-client/distribution/lib/linux/libjnportaudio.so inflating: spark-client-local/spark-client/distribution/lib/jna-platform-5.12.1.jar inflating: spark-client-local/spark-client/distribution/lib/jaxen-1.2.0.jar inflating: spark-client-local/spark-client/distribution/lib/slf4j-api-1.8.0-beta4.jar inflating: spark-client-local/spark-client/distribution/lib/bcutil-jdk18on-1.78.1.jar inflating: spark-client-local/spark-client/distribution/lib/swingx-all-1.6.5-1.jar inflating: spark-client-local/spark-client/distribution/lib/smack-xmlparser-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/smack-legacy-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/smack-tcp-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/commons-lang3-3.15.0.jar inflating: spark-client-local/spark-client/distribution/lib/xstream-1.4.20.jar creating: spark-client-local/spark-client/distribution/lib/mac/ inflating: spark-client-local/spark-client/distribution/lib/mac/libjng722.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libSystemUtilities.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libjnspeex.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/JavaSoundStream.fix.jar inflating: spark-client-local/spark-client/distribution/lib/mac/libjnscreencapture.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libjnopus.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libjnffmpeg.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libjnportaudio.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libjnquicktime.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libjnawtrenderer.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libjnmaccoreaudio.jnilib inflating: spark-client-local/spark-client/distribution/lib/mac/libjnvpx.jnilib inflating: spark-client-local/spark-client/distribution/lib/bctls-jdk18on-1.78.1.jar inflating: spark-client-local/spark-client/distribution/lib/dom4j-2.1.4.jar inflating: spark-client-local/spark-client/distribution/lib/spark-core-3.0.3-SNAPSHOT.jar inflating: spark-client-local/spark-client/distribution/lib/smack-java8-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/smack-debug-slf4j-4.4.8.jar creating: spark-client-local/spark-client/distribution/lib/windows64/ inflating: spark-client-local/spark-client/distribution/lib/windows64/jng722.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnvpx.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnffmpeg.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/civil.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnopus.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jndirectshow.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnwasapi.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnspeex.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnwincoreaudio.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnscreencapture.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnportaudio.dll inflating: spark-client-local/spark-client/distribution/lib/windows64/jnawtrenderer.dll inflating: spark-client-local/spark-client/distribution/lib/mxparser-1.2.2.jar creating: spark-client-local/spark-client/distribution/lib/linux64/ inflating: spark-client-local/spark-client/distribution/lib/linux64/libcivil.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjng722.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnvpx.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libodbcinst.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnscreencapture.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libodbc.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnspeex.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnpulseaudio.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnvideo4linux2.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnawtrenderer.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnopus.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnffmpeg.so inflating: spark-client-local/spark-client/distribution/lib/linux64/libjnportaudio.so inflating: spark-client-local/spark-client/distribution/lib/jaxb-api-2.3.1.jar inflating: spark-client-local/spark-client/distribution/lib/httpcore5-h2-5.2.4.jar inflating: spark-client-local/spark-client/distribution/lib/smack-resolver-javax-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/jxmpp-core-1.0.3.jar inflating: spark-client-local/spark-client/distribution/lib/install4j-runtime-11.0.4.jar inflating: spark-client-local/spark-client/distribution/lib/jna-5.12.1.jar inflating: spark-client-local/spark-client/distribution/lib/smack-sasl-javax-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/javax.activation-api-1.2.0.jar inflating: spark-client-local/spark-client/distribution/lib/smack-extensions-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/smack-im-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/smack-xmlparser-stax-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/thumbnailator-0.4.20.jar inflating: spark-client-local/spark-client/distribution/lib/xmlpull-1.1.3.1.jar inflating: spark-client-local/spark-client/distribution/lib/LoboBrowser-1.0.0.jar creating: spark-client-local/spark-client/distribution/lib/windows/ inflating: spark-client-local/spark-client/distribution/lib/windows/jng722.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnvpx.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnffmpeg.dll inflating: spark-client-local/spark-client/distribution/lib/windows/civil.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnopus.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jndirectshow.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnwasapi.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnspeex.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnwincoreaudio.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnscreencapture.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnportaudio.dll inflating: spark-client-local/spark-client/distribution/lib/windows/jnawtrenderer.dll inflating: spark-client-local/spark-client/distribution/lib/httpclient5-5.2.3.jar inflating: spark-client-local/spark-client/distribution/lib/httpcore5-5.2.4.jar inflating: spark-client-local/spark-client/distribution/lib/smack-experimental-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/smack-streammanagement-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/hsluv-0.2.jar inflating: spark-client-local/spark-client/distribution/lib/smack-core-4.4.8.jar inflating: spark-client-local/spark-client/distribution/lib/jxmpp-util-cache-1.0.3.jar inflating: spark-client-local/spark-client/distribution/lib/bcprov-jdk18on-1.78.1.jar creating: spark-client-local/spark-client/distribution/security/ creating: spark-client-local/spark-client/distribution/bin/ inflating: spark-client-local/spark-client/distribution/bin/startup.bat inflating: spark-client-local/spark-client/distribution/bin/startup.sh [root@yfw Spark-master]# cd spark-client-local/distribution -bash: cd: spark-client-local/distribution: No such file or directory [root@yfw Spark-master]# ls -la 总用量 69312 drwxr-xr-x 10 root root 4096 10月 30 16:05 . drwxr-xr-x 4 openfire openfire 4096 10月 30 14:58 .. drwxr-xr-x 4 root root 4096 10月 30 15:33 core drwxr-xr-x 4 root root 4096 10月 30 15:33 distribution -rw-r--r-- 1 root root 311 10月 21 17:54 .editorconfig drwxr-xr-x 3 root root 4096 10月 21 17:54 emoticons -rw-r--r-- 1 root root 911 10月 21 17:54 .gitattributes drwxr-xr-x 3 root root 4096 10月 21 17:54 .github -rw-r--r-- 1 root root 441 10月 21 17:54 .gitignore drwxr-xr-x 2 root root 4096 10月 21 17:54 .idea -rw-r--r-- 1 root root 11357 10月 21 17:54 LICENSE.txt drwxr-xr-x 22 root root 4096 10月 21 17:54 plugins -rw-r--r-- 1 root root 5049 10月 21 17:54 pom.xml -rw-r--r-- 1 root root 2592 10月 21 17:54 README.md -rw-r--r-- 1 root root 455 10月 21 17:54 SECURITY.md drwxr-xr-x 3 root root 4096 10月 30 15:36 spark-client drwxr-xr-x 3 root root 4096 10月 30 16:05 spark-client-local -rw-r--r-- 1 root root 70884318 10月 30 16:04 spark-client.zip -rw-r--r-- 1 root root 1901 10月 21 17:54 .transifex.yml [root@yfw Spark-master]#
最新发布
10-31
root@pwj:/opt/project/test_1# mvn clean package -U [INFO] Scanning for projects... [INFO] [INFO] -----------------------< org.example:scala_test >----------------------- [INFO] Building scala_test 1.0-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- Downloading from apache-hbase: https://repository.apache.org/content/repositories/releases/net/minidev/json-smart/maven-metadata.xml Downloading from alimaven: https://maven.aliyun.com/repository/public/net/minidev/json-smart/maven-metadata.xml Downloading from cloudera-repos: https://repository.cloudera.com/artifactory/cloudera-repos/net/minidev/json-smart/maven-metadata.xml Downloading from aliyun-public: https://maven.aliyun.com/repository/public/net/minidev/json-smart/maven-metadata.xml Downloaded from aliyun-public: https://maven.aliyun.com/repository/public/net/minidev/json-smart/maven-metadata.xml (1.4 kB at 7.3 kB/s) Downloaded from alimaven: https://maven.aliyun.com/repository/public/net/minidev/json-smart/maven-metadata.xml (1.4 kB at 7.3 kB/s) Downloading from maven-central-mirror: https://repo.maven.apache.org/maven2/net/minidev/json-smart/maven-metadata.xml Downloading from aliyun-spring: https://maven.aliyun.com/repository/spring/net/minidev/json-smart/maven-metadata.xml [WARNING] Checksum validation failed, expected <!doctype but is b912a31b6985bf6264b5e9525a859606934851b3 from aliyun-spring for https://maven.aliyun.com/repository/spring/net/minidev/json-smart/maven-metadata.xml [WARNING] Could not validate integrity of download from https://maven.aliyun.com/repository/spring/net/minidev/json-smart/maven-metadata.xml: Checksum validation failed, expected <!doctype but is b912a31b6985bf6264b5e9525a859606934851b3 [WARNING] Checksum validation failed, expected <!doctype but is b912a31b6985bf6264b5e9525a859606934851b3 from aliyun-spring for https://maven.aliyun.com/repository/spring/net/minidev/json-smart/maven-metadata.xml Downloaded from aliyun-spring: https://maven.aliyun.com/repository/spring/net/minidev/json-smart/maven-metadata.xml (159 kB at 1.1 MB/s) Downloading from apache.snapshots: https://repository.apache.org/snapshots/net/minidev/json-smart/maven-metadata.xml Downloading from dynamodb-local-oregon: https://s3-us-west-2.amazonaws.com/dynamodb-local/release/net/minidev/json-smart/maven-metadata.xml Downloading from apache.snapshots.https: https://repository.apache.org/content/repositories/snapshots/net/minidev/json-smart/maven-metadata.xml Downloaded from cloudera-repos: https://repository.cloudera.com/artifactory/cloudera-repos/net/minidev/json-smart/maven-metadata.xml (1.4 kB at 869 B/s) Downloading from repository.jboss.org: https://repository.jboss.org/nexus/content/groups/public/net/minidev/json-smart/maven-metadata.xml Downloaded from maven-central-mirror: https://repo.maven.apache.org/maven2/net/minidev/json-smart/maven-metadata.xml (1.4 kB at 735 B/s) [WARNING] The metadata /root/.m2/repository/net/minidev/json-smart/maven-metadata-aliyun-spring.xml is invalid: unexpected markup <!d (position: START_DOCUMENT seen \n<!d... @2:4) Downloading from alimaven: https://maven.aliyun.com/repository/public/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.pom Downloading from aliyun-public: https://maven.aliyun.com/repository/public/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.pom Downloading from apache-hbase: https://repository.apache.org/content/repositories/releases/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.pom Downloading from cloudera-repos: https://repository.cloudera.com/artifactory/cloudera-repos/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.pom Downloading from aliyun-spring: https://maven.aliyun.com/repository/spring/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.pom Downloading from maven-central-mirror: https://repo.maven.apache.org/maven2/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.pom [WARNING] The POM for org.apache.bahir:flink-connector-redis_2.12:jar:1.1.1 is missing, no dependency information available Downloading from alimaven: https://maven.aliyun.com/repository/public/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.jar Downloading from aliyun-public: https://maven.aliyun.com/repository/public/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.jar Downloading from apache-hbase: https://repository.apache.org/content/repositories/releases/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.jar Downloading from cloudera-repos: https://repository.cloudera.com/artifactory/cloudera-repos/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.jar Downloading from aliyun-spring: https://maven.aliyun.com/repository/spring/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.jar Downloading from maven-central-mirror: https://repo.maven.apache.org/maven2/org/apache/bahir/flink-connector-redis_2.12/1.1.1/flink-connector-redis_2.12-1.1.1.jar [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 16.924 s [INFO] Finished at: 2025-09-25T10:02:06+08:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project scala_test: Could not resolve dependencies for project org.example:scala_test:jar:1.0-SNAPSHOT: Could not find artifact org.apache.bahir:flink-connector-redis_2.12:jar:1.1.1 in alimaven (https://maven.aliyun.com/repository/public) -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException root@pwj:/opt/project/test_1# Could not find artifact org.apache.bahir:flink-connector-redis_2.12:pom:1.1.1 in alimaven (https://maven.aliyun.com/repository/public)
09-26
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值