Contact Us 1-800-596-4880

Update Your Modules

Every time Studio starts, it checks for updated modules in your open projects. You can update to the latest minor version of your module or upgrade directly to the latest version available. Upgrading to a major version of a module can introduce compatibility issues in your project. Review the release notes for your modules before upgrading to a major version.

If you select Java 17 for your project, Studio automatically searches Exchange and suggests the modules and connectors to upgrade to make your app compatible with Java 17.

To manually check for module updates:

  1. Ensure that you are logged in to Anypoint Platform.

  2. In the menu bar, click Manage Mule Modules (2%).

    manage mule modules location
This feature does not support modules that are inherited from a parent POM file.

You can also manage all dependencies in your project:

  1. In the menu bar, click Manage dependencies 20.

  2. Under Mule Project, select Modules.

    manage modules

    When Studio loads this wizard for the first time, it automatically checks for new versions of your modules.

  3. Select the module that you want to update and click Update version.

    update module version

    Additionally, you can select Update all dependencies to latest to update all dependencies to the latest version of each.

    update all modules
  4. Select Apply and close.

Studio updates your selected dependencies.

This process works if you manage your dependencies using Studio.

To use Maven properties to specify your module version:

<properties>
  <http_connector_version>1.5.23</http_connector_version>
</properties>

<dependency>
    <groupId>org.mule.connectors</groupId>
    <artifactId>mule-http-connector</artifactId>
    <version>${http_connector_version}</version>
    <classifier>mule-plugin</classifier>
</dependency>

Contact your development team to update your custom Maven code to the latest version available.