Add Develocity support to the project

This commit is contained in:
Artem Bilan
2024-10-16 15:40:09 -04:00
parent 76b41e8dac
commit 50e7d82dc6
4 changed files with 20 additions and 0 deletions

View File

@@ -7,6 +7,10 @@ permissions:
actions: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
jobs:
build-and-deploy-snapshot:
if: ${{ github.repository == 'spring-projects/spring-retry' }}

View File

@@ -5,6 +5,10 @@ on:
- v2.0.[0-9]+
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
jobs:
build-and-stage-release:
if: ${{ github.repository == 'spring-projects/spring-retry' }}

8
.mvn/extensions.xml Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<extensions>
<extension>
<groupId>io.spring.develocity.conventions</groupId>
<artifactId>develocity-conventions-maven-extension</artifactId>
<version>0.0.19</version>
</extension>
</extensions>

View File

@@ -203,6 +203,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
</plugin>
</plugins>
</pluginManagement>
<plugins>