Skip to content

Commit be37cba

Browse files
committed
Revert "Publish build scans to develocity.apache.org (#14140)"
This reverts commit dbdb030.
1 parent dbdb030 commit be37cba

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/run-checks-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- 'branch_10x'
1414

1515
env:
16-
DEVELOCITY_ACCESS_KEY: ${{ DEVELOCITY_ACCESS_KEY }}
16+
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
1717

1818
# We split the workflow into two parallel jobs for efficiency:
1919
# one is running all validation checks without tests,

.github/workflows/run-checks-gradle-upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
- 'gradle/wrapper/**'
2121

2222
env:
23-
DEVELOCITY_ACCESS_KEY: ${{ DEVELOCITY_ACCESS_KEY }}
23+
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
2424

2525
jobs:
2626
gradleSanityCheck:

.github/workflows/run-checks-mod-analysis-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
- 'lucene/analysis/common/**'
2121

2222
env:
23-
DEVELOCITY_ACCESS_KEY: ${{ DEVELOCITY_ACCESS_KEY }}
23+
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
2424

2525
jobs:
2626
test:

.github/workflows/run-checks-mod-distribution.tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
- 'branch_10x'
1515

1616
env:
17-
DEVELOCITY_ACCESS_KEY: ${{ DEVELOCITY_ACCESS_KEY }}
17+
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
1818

1919
jobs:
2020
test:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Apache Lucene is a high-performance, full-featured text search engine library
2323
written in Java.
2424

2525
[![Build Status](https://ci-builds.apache.org/job/Lucene/job/Lucene-Artifacts-main/badge/icon?subject=Lucene)](https://ci-builds.apache.org/job/Lucene/job/Lucene-Artifacts-main/)
26-
[![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://develocity.apache.org/scans?search.buildToolType=gradle&search.rootProjectNames=lucene-root)
26+
[![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.apache.org/scans?search.buildToolType=gradle&search.rootProjectNames=lucene-root)
2727

2828
## Online Documentation
2929

gradle/ge.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717

1818
def isCIBuild = System.getenv().keySet().find { it ==~ /(?i)((JENKINS|HUDSON)(_\w+)?|CI)/ } != null
1919

20-
develocity {
21-
server = "https://develocity.apache.org"
22-
projectId = "lucene"
23-
20+
gradleEnterprise {
21+
server = "https://ge.apache.org"
2422
buildScan {
23+
capture { taskInputFiles = true }
2524
uploadInBackground = !isCIBuild
26-
publishing.onlyIf { it.isAuthenticated() }
25+
publishAlways()
26+
publishIfAuthenticated()
2727
obfuscation {
2828
ipAddresses { addresses -> addresses.collect { address -> "0.0.0.0"} }
2929
}
@@ -35,7 +35,7 @@ buildCache {
3535
enabled = !isCIBuild
3636
}
3737

38-
remote(develocity.buildCache) {
38+
remote(gradleEnterprise.buildCache) {
3939
enabled = false
4040
}
4141
}

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ pluginManagement {
2626

2727
plugins {
2828
id "org.gradle.toolchains.foojay-resolver-convention" version "0.8.0"
29-
id 'com.gradle.develocity' version '3.18.2'
30-
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
29+
id 'com.gradle.enterprise' version '3.15.1'
30+
id 'com.gradle.common-custom-user-data-gradle-plugin' version '1.11.3'
3131
}
3232

3333
dependencyResolutionManagement {

0 commit comments

Comments
 (0)