Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 92 additions & 0 deletions modules/ROOT/pages/acb-external-libraries.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
= Configure External Libraries for Mule Projects
:page-deployment-options: cloud-ide, desktop-ide

External libraries are project-level dependencies that Mule applications require to support certain connectors and components, such as Database connectors or Spring-based components.
Anypoint Code Builder provides a guided interface to add, edit, and delete external libraries, and automatically manages the corresponding entries in the project POM file.

External library configurations apply at the project level. Any change to a configured library affects all components in the project that require that library.

== Before You Begin

* xref:start-acb.adoc[].
* xref:int-create-integrations.adoc[].
* Add a connector or component that requires an external library, such as a Database or Spring component.

== When You Need to Configure an External Library

Anypoint Code Builder prompts you to configure an external library when you add or configure a component that requires additional dependencies.
For example, this can occur when you:

* Add a Database connector connection
* Configure a Spring-based component
* Use a custom component that depends on external libraries

You can also manage external libraries from the project-level configuration, independent of a specific component.

== Add an External Library

You can add an external library from the component configuration or from the project-level library configuration interface.

Add external libraries from one of these sources:

* Recommended libraries
* Maven dependencies
* Local files

Open the library configuration interface from a component:

. In the canvas, select a component that requires an external library.
. In the component configuration panel, locate the *Required Libraries* list.
. Click the *Configure library* icon.
+
Anypoint Code Builder opens the *Library Configuration* page.
Changes made on this page apply to the entire project.

=== Add a Recommended Library

Some components provide recommended libraries that match the component requirements.

. Open the *Library Configuration* page.
. Select *Add Recommended Library*.
+
The interface shows the library to add to the project.
. Click *Apply*.
+
The IDE adds the recommended library to the project POM file and applies it to all components that require it.

=== Add a Maven Dependency

Search Maven Central or manually specify Maven coordinates to add a dependency.

. Open the *Library Configuration* page.
. Select *Add Maven Dependency*.
. In the *Search Maven Central Repository* field, search for a dependency or enter the required Maven fields manually.
. Specify values for *Group ID*, *Artifact ID*, and *Version*.
. Optionally, configure additional fields such as *Scope*.
. Click *Apply*.

Only libraries that meet the required criteria appear in component library fields after configuration.

=== Add a Library from a Local File

Add a dependency from a local file, such as a JAR or an external POM file.

. Open the *Library Configuration* page.
. Select *Add from Local File*.
. Select a file from your system.
+
Anypoint Code Builder automatically populates the Maven fields based on the selected file.
. Override the populated values if required.
. Click *Apply*.

If you select an external POM file, it takes precedence over any POM embedded in the artifact file.

== Edit or Delete an External Library

Edit or remove an existing library configuration.

. Open the *Library Configuration* page.
. Select the configured library.
. Use the available actions to update or delete the library.
+
Deleting a library removes it from the project POM file and affects all components that use the library.