From 8abe538e52af37139d982a9c9cb2592e159439d1 Mon Sep 17 00:00:00 2001 From: Albert ten Napel Date: Tue, 15 Apr 2025 16:01:09 +0200 Subject: [PATCH 1/2] Add new flag to mx create-module-package --- content/en/docs/refguide/general/mx-command-line-tool/export.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/docs/refguide/general/mx-command-line-tool/export.md b/content/en/docs/refguide/general/mx-command-line-tool/export.md index 4e37c3c0bec..a69c2bd4d27 100644 --- a/content/en/docs/refguide/general/mx-command-line-tool/export.md +++ b/content/en/docs/refguide/general/mx-command-line-tool/export.md @@ -63,6 +63,7 @@ These are the `OPTIONS`: | `-l, --filter-required-libs` | Includes all the files except the userlibs that do not have an accompanying `[ModuleName].RequiredLib` file. | | `-e, --exclude-files` | Excludes all the files that match the given regular expression. | | `-d, --package-dir` | Exports the module package to the directory. | +| `-m, --exclude-managed-dependencies` | Excludes managed dependencies from synchronization and the exported module package. Note that this will prevent the module from being used if Gradle synchronization is disabled in Studio Pro. Available in 10.23 and later. In versions before 10.23 managed dependencies are not synchronized when using this command. | | `--help` | Displays the help screen. | For `TARGET-FILE`, specify the *.mpr* app you want to export. From 6c1e09b28aff480a1e82b424c940cc167e35d660 Mon Sep 17 00:00:00 2001 From: Albert ten Napel Date: Tue, 29 Apr 2025 11:58:04 +0200 Subject: [PATCH 2/2] Handle review comment --- content/en/docs/refguide/general/mx-command-line-tool/export.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/refguide/general/mx-command-line-tool/export.md b/content/en/docs/refguide/general/mx-command-line-tool/export.md index a69c2bd4d27..eee5a8b82f1 100644 --- a/content/en/docs/refguide/general/mx-command-line-tool/export.md +++ b/content/en/docs/refguide/general/mx-command-line-tool/export.md @@ -63,7 +63,7 @@ These are the `OPTIONS`: | `-l, --filter-required-libs` | Includes all the files except the userlibs that do not have an accompanying `[ModuleName].RequiredLib` file. | | `-e, --exclude-files` | Excludes all the files that match the given regular expression. | | `-d, --package-dir` | Exports the module package to the directory. | -| `-m, --exclude-managed-dependencies` | Excludes managed dependencies from synchronization and the exported module package. Note that this will prevent the module from being used if Gradle synchronization is disabled in Studio Pro. Available in 10.23 and later. In versions before 10.23 managed dependencies are not synchronized when using this command. | +| `-m, --exclude-managed-dependencies` | Excludes managed dependencies from synchronization and the exported module package. Note that this will prevent the module from being used if Gradle synchronization is disabled in Studio Pro. Available in 10.23 and later. In versions before 10.23, managed dependencies are never synchronized. | | `--help` | Displays the help screen. | For `TARGET-FILE`, specify the *.mpr* app you want to export.