File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/test/kotlin/com/gabrielfeo/gradle/enterprise/api Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ api.getBuilds(since = yesterday).forEach {
16
16
17
17
Set up once and use the library from any script in your machine:
18
18
19
- - [ ` GRADLE_ENTERPRISE_URL ` ] [ 16 ] environment variable: the URL of your Gradle Enterprise instance
19
+ - [ ` GRADLE_ENTERPRISE_API_URL ` ] [ 16 ] environment variable: the URL of your Gradle Enterprise instance
20
20
- [ ` GRADLE_ENTERPRISE_API_TOKEN ` ] [ 17 ] environment variable: an API access token for the Gradle
21
21
Enterprise instance. Alternatively, can be a macOS keychain entry labeled
22
22
` gradle-enterprise-api-token ` (recommended).
@@ -128,5 +128,5 @@ API classes such as `GradleEnterpriseApi` and response models are generated from
128
128
[ 13 ] : https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/gradle-enterprise-api-kotlin/com.gabrielfeo.gradle.enterprise.api/-options/-cache/index.html
129
129
[ 14 ] : https://jitpack.io/#gabrielfeo/gradle-enterprise-api-kotlin
130
130
[ 15 ] : https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/
131
- [ 16 ] : https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/gradle-enterprise-api-kotlin/com.gabrielfeo.gradle.enterprise.api/-options/-gradle-enterprise-instance/index.html#-570175362 %2FProperties%2F769193423
131
+ [ 16 ] : https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/gradle-enterprise-api-kotlin/com.gabrielfeo.gradle.enterprise.api/-options/-gradle-enterprise-instance-options /index.html#-259580834 %2FProperties%2F769193423
132
132
[ 17 ] : https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/gradle-enterprise-api-kotlin/com.gabrielfeo.gradle.enterprise.api/-options/-gradle-enterprise-instance/index.html#2124126004%2FProperties%2F769193423
Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ class OkHttpClientTest {
68
68
val env = FakeEnv (* envVars)
69
69
if (" GRADLE_ENTERPRISE_API_TOKEN" !in env)
70
70
env[" GRADLE_ENTERPRISE_API_TOKEN" ] = " example-token"
71
- if (" GRADLE_ENTERPRISE_URL " !in env)
72
- env[" GRADLE_ENTERPRISE_URL " ] = " example-url"
71
+ if (" GRADLE_ENTERPRISE_API_URL " !in env)
72
+ env[" GRADLE_ENTERPRISE_API_URL " ] = " example-url"
73
73
return buildOkHttpClient(Options (env, FakeKeychain ()))
74
74
}
75
- }
75
+ }
You can’t perform that action at this time.
0 commit comments