Skip to content

Commit

Permalink
Update leftover URL references (#14)
Browse files Browse the repository at this point in the history
Follow-up to #13
  • Loading branch information
gabrielfeo authored Jan 10, 2023
1 parent a4853da commit d0fa2f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ api.getBuilds(since = yesterday).forEach {

Set up once and use the library from any script in your machine:

- [`GRADLE_ENTERPRISE_URL`][16] environment variable: the URL of your Gradle Enterprise instance
- [`GRADLE_ENTERPRISE_API_URL`][16] environment variable: the URL of your Gradle Enterprise instance
- [`GRADLE_ENTERPRISE_API_TOKEN`][17] environment variable: an API access token for the Gradle
Enterprise instance. Alternatively, can be a macOS keychain entry labeled
`gradle-enterprise-api-token` (recommended).
Expand Down Expand Up @@ -128,5 +128,5 @@ API classes such as `GradleEnterpriseApi` and response models are generated from
[13]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/gradle-enterprise-api-kotlin/com.gabrielfeo.gradle.enterprise.api/-options/-cache/index.html
[14]: https://jitpack.io/#gabrielfeo/gradle-enterprise-api-kotlin
[15]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/
[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
[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
[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
Expand Up @@ -68,8 +68,8 @@ class OkHttpClientTest {
val env = FakeEnv(*envVars)
if ("GRADLE_ENTERPRISE_API_TOKEN" !in env)
env["GRADLE_ENTERPRISE_API_TOKEN"] = "example-token"
if ("GRADLE_ENTERPRISE_URL" !in env)
env["GRADLE_ENTERPRISE_URL"] = "example-url"
if ("GRADLE_ENTERPRISE_API_URL" !in env)
env["GRADLE_ENTERPRISE_API_URL"] = "example-url"
return buildOkHttpClient(Options(env, FakeKeychain()))
}
}
}

0 comments on commit d0fa2f3

Please sign in to comment.