You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enum representing the resolution mode of repositories, determining the order in which repositories are searched when resolving dependencies.
5
+
*/
6
+
publicenumRepositoryResolutionMode {
7
+
/**
8
+
* The default resolution mode searches for library repositories first, followed by global repositories, and then library fallback repositories if necessary.
9
+
*/
10
+
DEFAULT,
11
+
/**
12
+
* With GLOBAL_FIRST, global repositories are searched first, followed by library repositories, and then library fallback repositories if necessary.
13
+
*/
14
+
GLOBAL_FIRST,
15
+
/**
16
+
* With LIBRARY_FIRST, library repositories are searched first, followed by library fallback repositories, and then global repositories if necessary.
0 commit comments