“The POM for … is missing, no dependency information available” even though it exists in Maven Repository

前端 未结 7 1737
感情败类
感情败类 2020-12-09 07:54

Problem:

A dependency will not download even though I copied it from the Maven Repository.

When I hover over the dependency in Eclipse, it w

7条回答
  •  攒了一身酷
    2020-12-09 08:23

    You will need to add external Repository to your pom, since this is using Mulsoft-Release repository not Maven Central

    
       ...
        
            
                mulesoft-releases
                MuleSoft Repository
                http://repository.mulesoft.org/releases/
                default
            
        
      ...
    
    

    Dependency

    Apache Maven - Setting up Multiple Repositories

提交回复
热议问题