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
- File `$GRADLE_USER_HOME/.gradle/develocity/keys.properties`, or `~/.gradle/develocity/keys.properties` if `GRADLE_USER_HOME` is not set
50
+
- File `~/.m2/.develocity/keys.properties`
51
+
52
+
Refer to the Develocity [Gradle Plugin User Manual][36] or [Maven Extension User Manual][37] for details on these variables and files, including support for keys of multiple hosts.
53
+
54
+
</details>
36
55
37
56
### Setup snippets
38
57
@@ -171,7 +190,7 @@ your own. For example:
171
190
```kotlin
172
191
val config =Config(
173
192
apiUrl ="https://ge.mycompany.com/api/",
174
-
apiToken= { vault.getGeApiToken() },
193
+
accessKey= { vault.getDevelocityAccessKey() },
175
194
clientBuilder = existingClient.newBuilder(),
176
195
)
177
196
val api =DevelocityApi.newInstance(config)
@@ -213,7 +232,7 @@ For general discussions or questions, feel free to reach out to maintainers on t
Copy file name to clipboardExpand all lines: examples/example-notebooks/MostFrequentBuilds.ipynb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
"source": [
10
10
"# Most frequent builds\n",
11
11
"\n",
12
-
"See what builds are most commonly invoked by developers, e.g. `clean assemble`, `test` or `check`. You can [set up the URL and a token for your Develocity instance](https://github.com/gabrielfeo/develocity-api-kotlin/blob/main/README.md#setup) and run this notebook as-is for your own project.\n",
12
+
"See what builds are most commonly invoked by developers, e.g. `clean assemble`, `test` or `check`. You can [set up the URL and an access key for your Develocity instance](https://github.com/gabrielfeo/develocity-api-kotlin/blob/main/README.md#setup) and run this notebook as-is for your own project.\n",
13
13
"\n",
14
14
"This is a simple example of something you can do with the API. It could bring insights, for example:\n",
0 commit comments