fuyufjh opened a new issue #11129: URL: https://github.com/apache/druid/issues/11129
### Affected Version ALL (source code level) ### Description Tried to compile the project on my local machine with `mvn install` but failed. The error message was: ``` [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2.019 s [INFO] Finished at: 2021-04-19T16:12:35+08:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project druid: Could not resolve dependencies for project com.alibaba:druid:jar:1.2.5-SNAPSHOT: Failed to collect dependencies at com.aliyun.odps:odps-sdk-udf:jar:0.17.3: Failed to read artifact descriptor for com.aliyun.odps:odps-sdk-udf:jar:0.17.3: Failure to find com.taobao:parent:pom:1.0.2 in https://maven.aliyun.com/repository/public was cached in the local repository, resolution will not be reattempted until the update interval of aliyunmaven has elapsed or updates are forced -> [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 ``` The root cause is one of the dependencies `com.aliyun.odps:odps-sdk-udf:jar:0.17.3` relies on a non-existing depedency named `com.taobao:parent:pom:1.0.2`. More accurately, the dependency tree is: ``` com.aliyun.odps:odps-sdk-udf:jar:0.17.3 -> com.aliyun.odps:odps-sdk:0.17.3 -> com.aliyun.odps:odps:0.17.3 -> com.taobao:parent:1.0.2 // non-existing! ``` To fix this issue, just upgrade to a newer version of `com.aliyun.odps:odps-sdk-udf:jar`, for example, version `0.18.3-public`, or just upgrade to the latest one. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
