diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 41d49f8c3817..f0c244ca5c84 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -36,7 +36,10 @@ updates: # dependapot. - dependency-name: "org.wordpress:fluxc" - dependency-name: "org.wordpress:utils" + # org.wordpress-mobile.gutenberg-mobile is deprecated and org.wordpress.gutenberg-mobile is used instead. + # Temporarily leaving this declaration during transition, but this should be removed soon. - dependency-name: "org.wordpress-mobile.gutenberg-mobile:react-native-gutenberg-bridge" + - dependency-name: "org.wordpress.gutenberg-mobile:react-native-gutenberg-bridge" - dependency-name: "org.wordpress:login" - dependency-name: "com.automattic:stories" - dependency-name: "com.automattic.stories:mp4compose" diff --git a/WordPress/build.gradle b/WordPress/build.gradle index 006de851ae42..93370a88f9e6 100644 --- a/WordPress/build.gradle +++ b/WordPress/build.gradle @@ -36,12 +36,16 @@ repositories { includeGroup "org.wordpress.aztec" includeGroup "org.wordpress.fluxc" includeGroup "org.wordpress.wellsql" - includeGroup "org.wordpress-mobile" - includeGroup "org.wordpress-mobile.gutenberg-mobile" - includeGroupByRegex "org.wordpress-mobile.react-native-libraries.*" + includeGroup "org.wordpress.gutenberg-mobile" + includeGroupByRegex "org.wordpress.react-native-libraries.*" includeGroup "com.automattic" includeGroup "com.automattic.stories" includeGroup "com.automattic.tracks" + // 'org.wordpress-mobile' group is deprecated. It's kept for now for smoother transition + // but it should be removed soon (within couple weeks) + includeGroup "org.wordpress-mobile" + includeGroup "org.wordpress-mobile.gutenberg-mobile" + includeGroupByRegex "org.wordpress-mobile.react-native-libraries.*" } } maven { diff --git a/libs/editor/build.gradle b/libs/editor/build.gradle index a6203ef1c9ed..288035530a8a 100644 --- a/libs/editor/build.gradle +++ b/libs/editor/build.gradle @@ -11,6 +11,9 @@ repositories { content { includeGroup "org.wordpress" includeGroup "org.wordpress.aztec" + includeGroupByRegex "org.wordpress.react-native-libraries.*" + // 'org.wordpress-mobile' group is deprecated. It's kept for now for smoother transition + // but it should be removed soon (within couple weeks) includeGroup "org.wordpress-mobile" includeGroup "org.wordpress-mobile.gutenberg-mobile" includeGroupByRegex "org.wordpress-mobile.react-native-libraries.*"