File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,26 @@ plugins {
13
13
group = " com.gradle"
14
14
15
15
repositories {
16
- mavenLocal()
16
+ maven {
17
+ name = " Solutions"
18
+ url = uri(" https://repo.gradle.org/artifactory/solutions" )
19
+ credentials {
20
+ username = providers
21
+ .environmentVariable(" GRADLE_SOLUTIONS_REPOSITORY_USERNAME" )
22
+ .orElse(providers.gradleProperty(" gradleSolutionsRepositoryUsername" ))
23
+ .get()
24
+ password = providers
25
+ .environmentVariable(" GRADLE_SOLUTIONS_REPOSITORY_PASSWORD" )
26
+ .orElse(providers.gradleProperty(" gradleSolutionsRepositoryPassword" ))
27
+ .get()
28
+ }
29
+ authentication {
30
+ create<BasicAuthentication >(" basic" )
31
+ }
32
+ content {
33
+ includeModule(" com.gradle.enterprise" , " build-scan-summary" )
34
+ }
35
+ }
17
36
exclusiveContent {
18
37
forRepository {
19
38
ivy {
You can’t perform that action at this time.
0 commit comments