Browse Source

Merge branch '1.3.x'

pull/1772/head
Joe Grandja 1 year ago
parent
commit
e47e28a19f
  1. 3
      .github/workflows/continuous-integration-workflow.yml
  2. 3
      .github/workflows/pr-build-workflow.yml
  3. 6
      build.gradle
  4. 3
      settings.gradle

3
.github/workflows/continuous-integration-workflow.yml

@ -8,6 +8,9 @@ on: @@ -8,6 +8,9 @@ on:
- cron: '0 10 * * *' # Once per day at 10am UTC
workflow_dispatch:
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
jobs:
build:
name: Build

3
.github/workflows/pr-build-workflow.yml

@ -5,6 +5,9 @@ on: @@ -5,6 +5,9 @@ on:
branches:
- '**'
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
jobs:
build:
name: Build

6
build.gradle

@ -15,9 +15,9 @@ springRelease { @@ -15,9 +15,9 @@ springRelease {
replaceSnapshotVersionInReferenceDocUrl = true
}
if (hasProperty("buildScan")) {
develocity {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
termsOfUseUrl = 'https://gradle.com/help/legal-terms-of-use'
termsOfUseAgree = 'yes'
}
}

3
settings.gradle

@ -5,8 +5,7 @@ pluginManagement { @@ -5,8 +5,7 @@ pluginManagement {
}
plugins {
id "com.gradle.enterprise" version "3.16.2"
id "io.spring.ge.conventions" version "0.0.15"
id "io.spring.develocity.conventions" version "0.0.22"
}
dependencyResolutionManagement {

Loading…
Cancel
Save