Skip to content

Commit 015e659

Browse files
committed
Enable Devlocity
1 parent af6bbea commit 015e659

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@ on:
88
- cron: '0 10 * * *' # Once per day at 10am UTC
99
workflow_dispatch: # Manual trigger
1010

11+
env:
12+
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
13+
1114
jobs:
1215
build:
1316
name: Build
14-
uses: spring-io/spring-security-release-tools/.github/workflows/build.yml@v1.0.8
17+
uses: spring-io/spring-security-release-tools/.github/workflows/build.yml@v1
1518
strategy:
1619
matrix:
1720
os: [ ubuntu-latest ]

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,9 @@ springRelease {
1515
releaseVersionPrefix = "v"
1616
}
1717

18+
develocity {
19+
buildScan {
20+
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
21+
termsOfUseAgree = "yes"
22+
}
23+
}

settings.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ pluginManagement {
77
}
88
}
99

10+
plugins {
11+
id "io.spring.develocity.conventions" version "0.0.24"
12+
id "com.gradle.develocity" version "4.2.2"
13+
}
14+
1015
// FIXME: Perhaps this should be named spring-boot-webserver-commons-exec
1116
rootProject.name = 'spring-boot-testjars-build'
1217

0 commit comments

Comments
 (0)