cxzl25 commented on PR #2659:
URL: 
https://github.com/apache/incubator-kyuubi/pull/2659#issuecomment-1126526459

   IntelliJ IDEA Build Panel has this WARNING prompt after #2576 was merged. 
   Thanks for reporting the problem to me. @pan3793 
   
   
![image](https://user-images.githubusercontent.com/3898450/168391143-83bccf89-69a1-43a3-b483-9fee8fd6a728.png)
   
   The problem is introduced by hbase related dependencies.
   
   In the research and debugging of IntelliJ IDEA `RemoteMavenServer` and 
`maven-dependency-plugin`, it is found that it is caused by specifying a range 
of dependent versions.
   
   ```xml
           <dependency>
               <groupId>org.glassfish</groupId>
               <artifactId>javax.el</artifactId>
               <version>[3.0.0,)</version>
           </dependency>
   ```
   
   
https://repo1.maven.org/maven2/org/glassfish/javax.el/3.0.0/javax.el-3.0.0.pom 
   (repository jvnet-nexus-release)
   
   
   maven-resolver-provider first obtains the pom through 3.0.0, then obtains 
the repository described by the pom, and finally through the central repo and 
the repository described by the pom, summarizes the version list, and then 
obtains the latest version.
   Because several versions corresponding to the repository described by pom 
(https://maven.java.net/content/repositories/snapshots/org/glassfish/javax.el/maven-metadata.xml)
 do not exist, such a prompt appears.
   
   
   REF: https://issues.apache.org/jira/browse/HBASE-18831
   
   


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to