Skip to content

Commit 50e7d82

Browse files
committed
Add Develocity support to the project
1 parent 76b41e8 commit 50e7d82

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

.github/workflows/build-and-deploy-snapshot.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ permissions:
77
actions: write
88
concurrency:
99
group: ${{ github.workflow }}-${{ github.ref }}
10+
11+
env:
12+
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
13+
1014
jobs:
1115
build-and-deploy-snapshot:
1216
if: ${{ github.repository == 'spring-projects/spring-retry' }}

.github/workflows/release.yml

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
- v2.0.[0-9]+
66
concurrency:
77
group: ${{ github.workflow }}-${{ github.ref }}
8+
9+
env:
10+
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
11+
812
jobs:
913
build-and-stage-release:
1014
if: ${{ github.repository == 'spring-projects/spring-retry' }}

.mvn/extensions.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<extensions>
3+
<extension>
4+
<groupId>io.spring.develocity.conventions</groupId>
5+
<artifactId>develocity-conventions-maven-extension</artifactId>
6+
<version>0.0.19</version>
7+
</extension>
8+
</extensions>

pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,10 @@
203203
<artifactId>maven-surefire-plugin</artifactId>
204204
<version>3.3.0</version>
205205
</plugin>
206+
<plugin>
207+
<groupId>com.gradle</groupId>
208+
<artifactId>develocity-maven-extension</artifactId>
209+
</plugin>
206210
</plugins>
207211
</pluginManagement>
208212
<plugins>

0 commit comments

Comments
 (0)