This issue typically occurs when Anypoint Studio or your local Maven environment fails to properly download the Project Object Model (POM) file for a specific connector version from the configured Maven repositories. This can be due to various factors, including:
When the POM is missing, Maven cannot determine the connector's transitive dependencies, leading to resolution failures.
To resolve this dependency resolution issue, manually force Maven to re-download the connector's artifacts by clearing the local cache and explicitly defining the dependency in your project's pom.xml.
Navigate to your local Maven repository (typically ~/.m2/repository on Linux/macOS or C:\Users\<YourUser>\.m2\repository on Windows). Locate and delete the entire folder corresponding to the problematic connector version. For example, for the Salesforce Composite Connector 3.0.0, delete the ~/.m2/repository/com/mulesoft/connectors/salesforce-composite-connector/3.0.0 directory.
pom.xml:Open your Mule project's pom.xml file in Anypoint Studio or a text editor. Add the following dependency entry within the <dependencies> section:
<dependency>
<groupId>com.mulesoft.connectors</groupId>
<artifactId>salesforce-composite-connector</artifactId>
<version>3.0.0</version>
<classifier>mule-plugin</classifier>
</dependency>
*Note: Ensure the groupId and artifactId match the specific connector you are using.*
pom.xml file:pom.xml file will trigger Maven to resolve and download the dependencies. Anypoint Studio will automatically detect the changes and attempt to download the missing POM and other artifacts into your local Maven repository.~/.m2/repository/com/mulesoft/connectors/salesforce-composite-connector/3.0.0) to ensure that the salesforce-composite-connector-3.0.0.pom file and other connector artifacts are now present.
*If you are using an internal Maven proxy (e.g., Artifactory, Nexus), ensure that it is correctly configured to proxy https://maven.anypoint.mulesoft.com/api/v2/maven/ and that the proxy's cache for the specific connector version is not corrupted or outdated. The direct Maven repository URL for MuleSoft connectors is https://maven.anypoint.mulesoft.com/api/v2/maven/com/mulesoft/connectors/<connector-artifact-id>/.*
005390175

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.