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
enhance configuraiton for authentication providers
motivation: support custom authentican providers, not just netrc
changes:
* reafactor and seperate out the auth data model from the loading/saving mutation utility
* adjust call sites
* add tests
/// The downloader used for unarchiving binary artifacts.
206
206
fileprivateletarchiver:Archiver
@@ -239,7 +239,7 @@ public class Workspace {
239
239
/// - fileSystem: The file system to use.
240
240
/// - location: Workspace location configuration.
241
241
/// - mirrors: Dependencies mirrors.
242
-
/// - netrcFilePath: Path tot he netrc file.
242
+
/// - authorizationProvider: Provider of authentication information.
243
243
/// - customToolsVersion: A custom tools version.
244
244
/// - customManifestLoader: A custom manifest loader.
245
245
/// - customRepositoryManager: A custom repository manager.
@@ -249,15 +249,16 @@ public class Workspace {
249
249
/// - customArchiver: A custom archiver.
250
250
/// - customChecksumAlgorithm: A custom checksum algorithm.
251
251
/// - additionalFileRules: File rules to determine resource handling behavior.
252
-
/// - resolverUpdateEnabled: Enables the dependencies resolver automatic version update check, relying only on the resolved version file
253
-
/// - resolverPrefetchingEnabled: Enables the dependencies resolver prefetching based on the resolved version file
254
-
/// - resolverTracingEnabled:Enables the dependencies resolver tracing
252
+
/// - resolverUpdateEnabled: Enables the dependencies resolver automatic version update check. Enabled by default. When disabled the resolver relies only on the resolved version file
253
+
/// - resolverPrefetchingEnabled: Enables the dependencies resolver prefetching based on the resolved version file. Enabled by default..
254
+
/// - resolverTracingEnabled: Enables the dependencies resolver tracing. Disabled by default..
255
+
/// - sharedRepositoriesCacheEnabled: Enables the shared repository cache. Enabled by default..
0 commit comments