Skip to content

Commit fbaa91a

Browse files
authored
Rename many things to Develocity (#177)
Find and replace `gradle[-_./]enterprise` and other variations for Develocity. Disable README links test in PRs for now. New links remain broken until after the repository rename and Pages publish at that path. Part of #184
1 parent 23008ee commit fbaa91a

File tree

56 files changed

+274
-273
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+274
-273
lines changed

.github/scripts/test_resources/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
[![Maven Central](https://img.shields.io/badge/Maven%20Central-0.17.0-blue)][14]
44

55
```kotlin
6-
@file:DependsOn("com.gabrielfeo:gradle-enterprise-api-kotlin:0.17.0")
6+
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:0.17.0")
77
```
88

99
```kotlin
10-
implementation("com.gabrielfeo:gradle-enterprise-api-kotlin:0.17.0")
10+
implementation("com.gabrielfeo:develocity-api-kotlin:0.17.0")
1111
```
1212

1313
```
14-
%use gradle-enterprise-api-kotlin(version=0.17.0)
14+
%use develocity-api-kotlin(version=0.17.0)
1515
```
1616

17-
[14]: https://central.sonatype.com/artifact/com.gabrielfeo/gradle-enterprise-api-kotlin/0.17.0
17+
[14]: https://central.sonatype.com/artifact/com.gabrielfeo/develocity-api-kotlin/0.17.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
dependencies {
2-
implementation("com.gabrielfeo:gradle-enterprise-api-kotlin:0.17.0")
2+
implementation("com.gabrielfeo:develocity-api-kotlin:0.17.0")
33
}

.github/scripts/test_update_api_spec_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ def test_main_without_update_available(self, mock_get, _):
3434

3535
def assert_properties_version(self, file, version):
3636
with open(file.name) as file:
37-
expected = f"gradle.enterprise.version={version}\nversion={version}.0\n1=2\n"
37+
expected = f"develocity.version={version}\nversion={version}.0\n1=2\n"
3838
self.assertEqual(file.read(), expected)
3939

4040
def properties_file(self, version):
4141
file = NamedTemporaryFile()
42-
content = f"gradle.enterprise.version={version}\nversion={version}.0\n1=2\n"
42+
content = f"develocity.version={version}\nversion={version}.0\n1=2\n"
4343
file.write(content.encode())
4444
file.flush()
4545
return file

.github/scripts/update_api_spec_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def get_current_api_spec_version(properties_file) -> str:
2424
if '=' not in line:
2525
continue
2626
k, v = line.strip().split('=', maxsplit=2)
27-
if k == 'gradle.enterprise.version':
27+
if k == 'develocity.version':
2828
return v
2929

3030

@@ -42,7 +42,7 @@ def update_version(properties_file, new_version):
4242
if '=' in line:
4343
k, v = line.strip().split('=', maxsplit=2)
4444
# Update target API spec version
45-
if k == 'gradle.enterprise.version':
45+
if k == 'develocity.version':
4646
line = f"{k}={new_version}\n"
4747
# Update library version
4848
if k == 'version':

.github/workflows/pr.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ jobs:
3030
- name: 'unittest discover'
3131
run: python3 -m unittest discover -bs .github/scripts
3232

33-
readme-links-test:
34-
uses: ./.github/workflows/test-readme-links.yml
33+
# TODO Re-enable once rename is done (too many dead links until new javadoc is published)
34+
# readme-links-test:
35+
# uses: ./.github/workflows/test-readme-links.yml
3536

3637
generated-api-diff:
3738
runs-on: ubuntu-latest

README.md

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Gradle Enterprise API Kotlin
1+
# Develocity API Kotlin
22

33
[![Maven Central](https://img.shields.io/badge/Maven%20Central-2023.4.0-blue)][14]
44
[![Javadoc](https://img.shields.io/badge/Javadoc-2023.4.0-orange)][7]
55

6-
A Kotlin library to access the [Gradle Enterprise API][1], easy to use from:
6+
A Kotlin library to access the [Develocity API][1], easy to use from:
77

88
- [Jupyter notebooks with the Kotlin kernel][29]
99
- [Kotlin scripts (`kts`)][27]
1010
- [Kotlin projects][28]
1111

1212
```kotlin
13-
val api = GradleEnterpriseApi.newInstance()
13+
val api = DevelocityApi.newInstance()
1414
api.buildsApi.getBuildsFlow(fromInstant = 0, query = "buildStartTime<-1d").forEach {
1515
println(it)
1616
}
@@ -22,8 +22,8 @@ api.buildsApi.getBuildsFlow(fromInstant = 0, query = "buildStartTime<-1d").forEa
2222

2323
Set up environment variables and use the library from any notebook, script or project:
2424

25-
- [`GRADLE_ENTERPRISE_API_URL`][16]: the URL of your Gradle Enterprise instance
26-
- [`GRADLE_ENTERPRISE_API_TOKEN`][17]: an [access key][31] for the Gradle Enterprise instance
25+
- [`GRADLE_ENTERPRISE_API_URL`][16]: the URL of your Develocity instance
26+
- [`GRADLE_ENTERPRISE_API_TOKEN`][17]: an [access key][31] for the Develocity instance
2727
- [`GRADLE_ENTERPRISE_API_CACHE_ENABLED`][12] (optional, off by default): enables caching for some
2828
requests (see [caveats][13])
2929

@@ -37,7 +37,7 @@ recommended over JitPack.
3737

3838
```
3939
%useLatestDescriptors
40-
%use gradle-enterprise-api-kotlin(version=2023.4.0)
40+
%use develocity-api-kotlin(version=2023.4.0)
4141
```
4242

4343
</details>
@@ -46,7 +46,7 @@ recommended over JitPack.
4646
<summary>Add to a Kotlin script</summary>
4747

4848
```kotlin
49-
@file:DependsOn("com.gabrielfeo:gradle-enterprise-api-kotlin:2023.4.0")
49+
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2023.4.0")
5050
```
5151

5252
</details>
@@ -56,19 +56,19 @@ recommended over JitPack.
5656

5757
```kotlin
5858
dependencies {
59-
implementation("com.gabrielfeo:gradle-enterprise-api-kotlin:2023.4.0")
59+
implementation("com.gabrielfeo:develocity-api-kotlin:2023.4.0")
6060
}
6161
```
6262

6363
</details>
6464

6565
## Usage
6666

67-
The [`GradleEnterpriseApi`][9] interface represents the Gradle Enterprise REST API. It contains
67+
The [`DevelocityApi`][9] interface represents the Develocity REST API. It contains
6868
all the APIs exactly as listed in the [REST API Manual][5]:
6969

7070
```kotlin
71-
interface GradleEnterpriseApi {
71+
interface DevelocityApi {
7272
val buildsApi: BuildsApi
7373
val testsApi: TestsApi
7474
val buildCacheApi: BuildCacheApi
@@ -106,7 +106,7 @@ off by default. Enable by simply setting [`GRADLE_ENTERPRISE_API_CACHE_ENABLED`]
106106
### Extensions
107107

108108
Explore the library's convenience extensions:
109-
[`com.gabrielfeo.gradle.enterprise.api.extension`][25].
109+
[`com.gabrielfeo.develocity.api.extension`][25].
110110

111111
By default, the API's most common endpoint, `/api/builds`, is paginated. The library provides a
112112
[`getBuildsFlow`][24] extension to handle paging under-the-hood and yield all builds as you collect
@@ -126,7 +126,7 @@ case they're needed again. This is an optimization of [OkHttp][4]. If you're wor
126126
or have a long-living program that fetches builds continuosly, no shutdown is needed.
127127

128128
```kotlin
129-
val api = GradleEnterpriseApi.newInstance()
129+
val api = DevelocityApi.newInstance()
130130
while (true) {
131131
delay(2.minutes)
132132
processNewBuilds(api.buildsApi.getBuildsFlow(query = "..."))
@@ -135,10 +135,10 @@ while (true) {
135135
```
136136

137137
In other cases (i.e. fetching some builds and exiting), you might want to call
138-
[`GradleEnterpriseApi.shutdown()`][11] so that the program exits immediately:
138+
[`DevelocityApi.shutdown()`][11] so that the program exits immediately:
139139

140140
```kotlin
141-
val api = GradleEnterpriseApi.newInstance()
141+
val api = DevelocityApi.newInstance()
142142
printMetrics(api.buildsApi.getBuildsFlow(query = "..."))
143143
// Call shutdown if you expect the program to exit now
144144
api.shutdown()
@@ -170,7 +170,7 @@ val config = Config(
170170
apiToken = { vault.getGeApiToken() },
171171
clientBuilder = existingClient.newBuilder(),
172172
)
173-
val api = GradleEnterpriseApi.newInstance(config)
173+
val api = DevelocityApi.newInstance(config)
174174
api.buildsApi.getBuilds(fromInstant = yesterdayMilli)
175175
```
176176

@@ -184,9 +184,9 @@ See the [`Config`][8] documentation for more.
184184
no auto-complete, wildcard imports can be used (in notebooks, they're added automatically):
185185

186186
```kotlin
187-
import com.gabrielfeo.gradle.enterprise.api.*
188-
import com.gabrielfeo.gradle.enterprise.api.model.*
189-
import com.gabrielfeo.gradle.enterprise.api.model.extension.*
187+
import com.gabrielfeo.develocity.api.*
188+
import com.gabrielfeo.develocity.api.model.*
189+
import com.gabrielfeo.develocity.api.model.extension.*
190190
```
191191

192192
[1]: https://docs.gradle.com/enterprise/api-manual/
@@ -195,27 +195,27 @@ import com.gabrielfeo.gradle.enterprise.api.model.extension.*
195195
[4]: https://github.com/square/retrofit/issues/3144#issuecomment-508300518
196196
[5]: https://docs.gradle.com/enterprise/api-manual/ref/2022.4.html
197197
[6]: https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator-gradle-plugin/README.adoc
198-
[7]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/
199-
[8]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/index.html
200-
[9]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-gradle-enterprise-api/
201-
[11]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-gradle-enterprise-api/shutdown.html
202-
[12]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/-cache-config/cache-enabled.html
203-
[13]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/-cache-config/index.html
204-
[14]: https://central.sonatype.com/artifact/com.gabrielfeo/gradle-enterprise-api-kotlin/2023.4.0
205-
[16]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/api-url.html
206-
[17]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/api-token.html
207-
[18]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-builds-api/index.html
208-
[19]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api.model/-gradle-attributes/index.html
209-
[20]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-builds-api/index.html
210-
[21]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-builds-api/get-builds.html
211-
[22]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-builds-api/get-gradle-attributes.html
212-
[23]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-gradle-enterprise-api/-default-instance/index.html
213-
[24]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api.extension/get-builds-flow.html
214-
[25]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api.extension/index.html
198+
[7]: https://gabrielfeo.github.io/develocity-api-kotlin/
199+
[8]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/index.html
200+
[9]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-develocity-api/
201+
[11]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-develocity-api/shutdown.html
202+
[12]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/-cache-config/cache-enabled.html
203+
[13]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/-cache-config/index.html
204+
[14]: https://central.sonatype.com/artifact/com.gabrielfeo/develocity-api-kotlin/2023.4.0
205+
[16]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/api-url.html
206+
[17]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/api-token.html
207+
[18]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-builds-api/index.html
208+
[19]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api.model/-gradle-attributes/index.html
209+
[20]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-builds-api/index.html
210+
[21]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-builds-api/get-builds.html
211+
[22]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-builds-api/get-gradle-attributes.html
212+
[23]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-develocity-api/-default-instance/index.html
213+
[24]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api.extension/get-builds-flow.html
214+
[25]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api.extension/index.html
215215
[26]: https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/
216216
[27]: ./examples/example-scripts/example-script.main.kts
217217
[28]: ./examples/example-project
218-
[29]: https://nbviewer.org/github/gabrielfeo/gradle-enterprise-api-kotlin/blob/main/examples/example-notebooks/MostFrequentBuilds.ipynb
218+
[29]: https://nbviewer.org/github/gabrielfeo/develocity-api-kotlin/blob/main/examples/example-notebooks/MostFrequentBuilds.ipynb
219219
[30]: https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/run-blocking.html
220220
[31]: ./docs/AccessKeys.md
221221
[32]: ./examples

build-logic/src/functionalTest/kotlin/com/gabrielfeo/task/PostProcessGeneratedApiTest.kt

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -24,30 +24,30 @@ class PostProcessGeneratedApiTest {
2424
*/
2525
@Test
2626
fun apiInterfacePostProcessing() = testPostProcessing(
27-
inputPath = "com/gabrielfeo/gradle/enterprise/api/BuildsApi.kt",
27+
inputPath = "com/gabrielfeo/develocity/api/BuildsApi.kt",
2828
inputContent = """
29-
package com.gabrielfeo.gradle.enterprise.api
30-
31-
import com.gabrielfeo.gradle.enterprise.api.internal.infrastructure.CollectionFormats.*
29+
package com.gabrielfeo.develocity.api
30+
31+
import com.gabrielfeo.develocity.api.internal.infrastructure.CollectionFormats.*
3232
import retrofit2.http.*
3333
import retrofit2.Response
3434
import okhttp3.RequestBody
3535
import com.squareup.moshi.Json
36-
37-
import com.gabrielfeo.gradle.enterprise.api.model.ApiProblem
38-
import com.gabrielfeo.gradle.enterprise.api.model.Build
39-
import com.gabrielfeo.gradle.enterprise.api.model.BuildModelQuery
40-
import com.gabrielfeo.gradle.enterprise.api.model.BuildQuery
41-
import com.gabrielfeo.gradle.enterprise.api.model.BuildsQuery
42-
import com.gabrielfeo.gradle.enterprise.api.model.GradleAttributes
43-
import com.gabrielfeo.gradle.enterprise.api.model.GradleBuildCachePerformance
44-
import com.gabrielfeo.gradle.enterprise.api.model.GradleNetworkActivity
45-
import com.gabrielfeo.gradle.enterprise.api.model.GradleProject
46-
import com.gabrielfeo.gradle.enterprise.api.model.MavenAttributes
47-
import com.gabrielfeo.gradle.enterprise.api.model.MavenBuildCachePerformance
48-
import com.gabrielfeo.gradle.enterprise.api.model.MavenDependencyResolution
49-
import com.gabrielfeo.gradle.enterprise.api.model.MavenModule
50-
36+
37+
import com.gabrielfeo.develocity.api.model.ApiProblem
38+
import com.gabrielfeo.develocity.api.model.Build
39+
import com.gabrielfeo.develocity.api.model.BuildModelQuery
40+
import com.gabrielfeo.develocity.api.model.BuildQuery
41+
import com.gabrielfeo.develocity.api.model.BuildsQuery
42+
import com.gabrielfeo.develocity.api.model.GradleAttributes
43+
import com.gabrielfeo.develocity.api.model.GradleBuildCachePerformance
44+
import com.gabrielfeo.develocity.api.model.GradleNetworkActivity
45+
import com.gabrielfeo.develocity.api.model.GradleProject
46+
import com.gabrielfeo.develocity.api.model.MavenAttributes
47+
import com.gabrielfeo.develocity.api.model.MavenBuildCachePerformance
48+
import com.gabrielfeo.develocity.api.model.MavenDependencyResolution
49+
import com.gabrielfeo.develocity.api.model.MavenModule
50+
5151
interface BuildsApi {
5252
/**
5353
* Get the common attributes of a Build Scan.
@@ -67,18 +67,18 @@ class PostProcessGeneratedApiTest {
6767
@GET("api/builds/{id}")
6868
suspend fun getBuild(@Path("id") id: kotlin.String, @Query("models") models: kotlin.collections.List<BuildModelName>? = null, @Query("availabilityWaitTimeoutSecs") availabilityWaitTimeoutSecs: kotlin.Int? = null): Response<Build>
6969
""".trimIndent(),
70-
outputPath = "com/gabrielfeo/gradle/enterprise/api/BuildsApi.kt",
70+
outputPath = "com/gabrielfeo/develocity/api/BuildsApi.kt",
7171
outputContent = """
72-
package com.gabrielfeo.gradle.enterprise.api
73-
74-
import com.gabrielfeo.gradle.enterprise.api.internal.infrastructure.CollectionFormats.*
72+
package com.gabrielfeo.develocity.api
73+
74+
import com.gabrielfeo.develocity.api.internal.infrastructure.CollectionFormats.*
7575
import retrofit2.http.*
7676
import retrofit2.Response
7777
import okhttp3.RequestBody
7878
import com.squareup.moshi.Json
79-
80-
import com.gabrielfeo.gradle.enterprise.api.model.*
81-
79+
80+
import com.gabrielfeo.develocity.api.model.*
81+
8282
@JvmSuppressWildcards
8383
interface BuildsApi {
8484
/**
@@ -106,25 +106,25 @@ class PostProcessGeneratedApiTest {
106106
*/
107107
@Test
108108
fun buildModelNameEnumPostProcessing() = testPostProcessing(
109-
inputPath = "com/gabrielfeo/gradle/enterprise/api/model/BuildModelName.kt",
109+
inputPath = "com/gabrielfeo/develocity/api/model/BuildModelName.kt",
110110
inputContent = """
111111
@JsonClass(generateAdapter = false)
112112
enum class BuildModelName(val value: kotlin.String) {
113-
113+
114114
@Json(name = "gradle-attributes")
115115
gradleMinusAttributes("gradle-attributes"),
116-
116+
117117
@Json(name = "gradle-build-cache-performance")
118118
gradleMinusBuildMinusCacheMinusPerformance("gradle-build-cache-performance"),
119119
""".trimIndent(),
120-
outputPath = "com/gabrielfeo/gradle/enterprise/api/model/BuildModelName.kt",
120+
outputPath = "com/gabrielfeo/develocity/api/model/BuildModelName.kt",
121121
outputContent = """
122122
@JsonClass(generateAdapter = false)
123123
enum class BuildModelName(val value: kotlin.String) {
124-
124+
125125
@Json(name = "gradle-attributes")
126126
gradleAttributes("gradle-attributes"),
127-
127+
128128
@Json(name = "gradle-build-cache-performance")
129129
gradleBuildCachePerformance("gradle-build-cache-performance"),
130130
""".trimIndent(),
@@ -163,18 +163,18 @@ class PostProcessGeneratedApiTest {
163163
// language=groovy
164164
"""
165165
import com.gabrielfeo.task.PostProcessGeneratedApi
166-
166+
167167
plugins {
168168
id("com.gabrielfeo.no-op")
169169
}
170-
170+
171171
tasks.register("postProcessGeneratedApi", PostProcessGeneratedApi) {
172172
originalFiles = new File("${inputDir.absolutePath}")
173-
modelsPackage = "com.gabrielfeo.gradle.enterprise.api.model"
173+
modelsPackage = "com.gabrielfeo.develocity.api.model"
174174
postProcessedFiles = new File("${outputDir.absolutePath}")
175175
}
176176
""".trimIndent()
177177
)
178178
return projectDir
179179
}
180-
}
180+
}

build-logic/src/main/kotlin/com/gabrielfeo/develocity-api-code-generation.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010

1111
val localSpecPath = providers.gradleProperty("localSpecPath")
1212
val remoteSpecUrl = providers.gradleProperty("remoteSpecUrl").orElse(
13-
providers.gradleProperty("gradle.enterprise.version").map { geVersion ->
13+
providers.gradleProperty("develocity.version").map { geVersion ->
1414
val majorVersion = geVersion.substringBefore('.').toInt()
1515
val specName = when {
1616
majorVersion <= 2023 -> "gradle-enterprise-$geVersion-api.yaml"
@@ -45,10 +45,10 @@ openApiGenerate {
4545
outputDir.set(generateDir)
4646
val ignoreFile = project.layout.projectDirectory.file(".openapi-generator-ignore")
4747
ignoreFileOverride.set(ignoreFile.asFile.absolutePath)
48-
apiPackage.set("com.gabrielfeo.gradle.enterprise.api")
49-
modelPackage.set("com.gabrielfeo.gradle.enterprise.api.model")
50-
packageName.set("com.gabrielfeo.gradle.enterprise.api.internal")
51-
invokerPackage.set("com.gabrielfeo.gradle.enterprise.api.internal")
48+
apiPackage.set("com.gabrielfeo.develocity.api")
49+
modelPackage.set("com.gabrielfeo.develocity.api.model")
50+
packageName.set("com.gabrielfeo.develocity.api.internal")
51+
invokerPackage.set("com.gabrielfeo.develocity.api.internal")
5252
additionalProperties.put("library", "jvm-retrofit2")
5353
additionalProperties.put("useCoroutines", true)
5454
cleanupOutput.set(true)

0 commit comments

Comments
 (0)