Skip to content

Commit

Permalink
Merge branch 'master' into master-ribafish-fork
Browse files Browse the repository at this point in the history
* master:
  Updated to latest develocity plugin supported and added CCUD gradle (eclipse#1315)
  Replaced deprecated jcenter with gradlePluginPortal repository (eclipse#1314)

# Conflicts:
#	org.eclipse.buildship.site/build.gradle
  • Loading branch information
ribafish committed Sep 4, 2024
2 parents d4be697 + 0891026 commit 2cad462
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
5 changes: 1 addition & 4 deletions org.eclipse.buildship.site/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@ apply plugin: 'org.hidetake.ssh'

buildscript {
repositories {
jcenter()
maven {
url = uri("https://plugins.gradle.org/m2/")
}
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 2cad462

Please sign in to comment.