Skip to content

Commit

Permalink
Merge branch 'master' into gk/ghaMultipleOs
Browse files Browse the repository at this point in the history
* master:
  Updated to latest develocity plugin supported and added CCUD gradle (eclipse-buildship#1315)
  Replaced deprecated jcenter with gradlePluginPortal repository (eclipse-buildship#1314)
  • Loading branch information
ribafish committed Sep 4, 2024
2 parents 1dd7195 + 0891026 commit 5cf6b93
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
4 changes: 3 additions & 1 deletion org.eclipse.buildship.site/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ apply plugin: eclipsebuild.UpdateSitePlugin
apply plugin: 'org.hidetake.ssh'

buildscript {
repositories { jcenter() }
repositories {
gradlePluginPortal()
}
dependencies {
classpath 'org.hidetake:gradle-ssh-plugin:2.10.1'
}
Expand Down
13 changes: 8 additions & 5 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
// publish build scans from CI builds
plugins {
id "com.gradle.enterprise" version "3.10"
id "com.gradle.develocity" version "3.17.6"
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
}

gradleEnterprise {

def isCI = System.getenv('CI') != null

develocity {
server = "https://ge.gradle.org"
buildScan {
boolean ci = System.getenv('CI') as boolean
publishAlwaysIf(ci)
uploadInBackground = !ci
publishing.onlyIf { isCI }
uploadInBackground = !isCI
}
}

Expand Down

0 comments on commit 5cf6b93

Please sign in to comment.