Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/groovy-joint-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
echo "VALUE<<EOF" >> $GITHUB_OUTPUT
echo "def isAuthenticated = System.getenv('GRAILS_DEVELOCITY_ACCESS_KEY ') != null" >> $GITHUB_OUTPUT
echo "develocity {" >> $GITHUB_OUTPUT
echo " server = 'https://ge.grails.org'" >> $GITHUB_OUTPUT
echo " server = 'https://develocity.apache.org'" >> $GITHUB_OUTPUT
echo " buildScan {" >> $GITHUB_OUTPUT
echo " tag('groovy')" >> $GITHUB_OUTPUT
echo " tag('grails-core')" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
# Apache Grails

[![Documentation](https://img.shields.io/badge/Documentation-595959)](https://grails.apache.org/docs/)
[![Develocity](https://img.shields.io/badge/Develocity-06A0CE?logo=Gradle&labelColor=06A0CE)](https://ge.grails.org/scans)
[![Develocity](https://img.shields.io/badge/Develocity-06A0CE?logo=Gradle&labelColor=06A0CE)](https://develocity.apache.org/scans)
[![CI](https://github.com/apache/grails-core/actions/workflows/gradle.yml/badge.svg?event=push)](https://github.com/apache/grails-core/actions/workflows/gradle.yml)
[![Groovy Joint Validation Build](https://github.com/apache/grails-core/actions/workflows/groovy-joint-workflow.yml/badge.svg?event=push)](https://github.com/apache/grails-core/actions/workflows/groovy-joint-workflow.yml)
[![Users Mailing List](https://img.shields.io/badge/Users_Mailing_List-feb571)](https://lists.apache.org/list.html?users@grails.apache.org)
Expand Down
2 changes: 1 addition & 1 deletion build-logic/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if (isReproducibleBuild) {
}

develocity {
server = 'https://ge.grails.org'
server = 'https://develocity.apache.org'
buildScan {
publishing.onlyIf { it.authenticated }
uploadInBackground = isLocal
Expand Down
2 changes: 1 addition & 1 deletion grails-data-graphql/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
}

gradleEnterprise {
server = 'https://ge.grails.org'
server = 'https://develocity.apache.org'
buildScan {
publishAlwaysIf(System.getenv('CI') == 'true')
publishIfAuthenticated()
Expand Down
4 changes: 2 additions & 2 deletions grails-data-neo4j/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
}

gradleEnterprise {
server = 'https://ge.grails.org'
server = 'https://develocity.apache.org'
buildScan {
publishAlwaysIf(System.getenv('CI') == 'true')
publishIfAuthenticated()
Expand All @@ -39,7 +39,7 @@ buildCache {
remote(HttpBuildCache) {
push = System.getenv('CI') == 'true'
enabled = true
url = 'https://ge.grails.org/cache/'
url = 'https://develocity.apache.org/cache/'
credentials {
username = System.getenv('GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER')
password = System.getenv('GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY')
Expand Down
2 changes: 1 addition & 1 deletion grails-forge/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def isLocal = !isCI
def isReproducibleBuild = System.getenv('SOURCE_DATE_EPOCH') != null

develocity {
server = 'https://ge.grails.org'
server = 'https://develocity.apache.org'
buildScan {
tag('grails')
tag('grails-forge')
Expand Down
2 changes: 1 addition & 1 deletion grails-gradle/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if (isReproducibleBuild) {
}

develocity {
server = 'https://ge.grails.org'
server = 'https://develocity.apache.org'
buildScan {
tag('grails')
tag('grails-gradle-plugins')
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ if (isReproducibleBuild) {
}

develocity {
server = 'https://ge.grails.org'
server = 'https://develocity.apache.org'
buildScan {
tag('grails')
tag('grails-core')
Expand Down
Loading