Browse Source

Merge branch '1.2.x' into 1.3.x

Closes gh-1771
pull/1776/head
Joe Grandja 1 year ago
parent
commit
f8519c55b8
  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:
- cron: '0 10 * * *' # Once per day at 10am UTC - cron: '0 10 * * *' # Once per day at 10am UTC
workflow_dispatch: workflow_dispatch:
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
jobs: jobs:
build: build:
name: Build name: Build

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

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

6
build.gradle

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

3
settings.gradle

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

Loading…
Cancel
Save