1 parent d89f5e2 commit 7090316Copy full SHA for 7090316
1 file changed
settings.gradle
@@ -1,3 +1,21 @@
1
+pluginManagement {
2
+ // Feed-first so plugin-classpath artifacts (and their Gradle Module Metadata probes)
3
+ // resolve from the Azure Artifacts feed instead of being redirected to Maven Central.
4
+ def azfuncFeedToken = System.getenv('AZURE_ARTIFACTS_ENV_ACCESS_TOKEN') ?: providers.gradleProperty('vstsMavenAccessToken').orNull
5
+ repositories {
6
+ maven {
7
+ url 'https://pkgs.dev.azure.com/azfunc/public/_packaging/upstream-public/maven/v1'
8
+ if (azfuncFeedToken) {
9
+ credentials {
10
+ username 'Azure DevOps Services'
11
+ password azfuncFeedToken
12
+ }
13
14
15
+ gradlePluginPortal()
16
17
+}
18
+
19
rootProject.name = 'durabletask-java'
20
21
include ":client"
0 commit comments