From d84b79b21d66ce832f6ac7e8b5cfd4e8ac2e7849 Mon Sep 17 00:00:00 2001 From: BastienLeleu Date: Thu, 11 Dec 2025 14:12:37 +0100 Subject: [PATCH 1/2] Update build.gradle Signed-off-by: BastienLeleu --- build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build.gradle b/build.gradle index a86c93fcd8a6..f2a7c7a5bd29 100644 --- a/build.gradle +++ b/build.gradle @@ -7,6 +7,14 @@ plugins { id 'com.gradleup.shadow' version "9.2.2" apply false id 'me.champeau.jmh' version '0.7.2' apply false id 'io.spring.nullability' version '0.0.8' apply false + id "org.sonarqube" version "7.2.0.6526" +} + +sonar { + properties { + property "sonar.projectKey", "BastienLeleu_spring-framework" + property "sonar.organization", "bastienleleu" + } } ext { From eb38d5a866d9723476d3994fdb696a0092e91fc2 Mon Sep 17 00:00:00 2001 From: BastienLeleu Date: Thu, 11 Dec 2025 14:13:48 +0100 Subject: [PATCH 2/2] Create build.yml Signed-off-by: BastienLeleu --- .github/workflows/build.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000000..1993a80c4377 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,36 @@ +name: SonarQube +on: + push: + branches: + - main + pull_request: + types: [opened, synchronize, reopened] +jobs: + build: + name: Build and analyze + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: 17 + distribution: 'zulu' # Alternative distribution options are available + - name: Cache SonarQube packages + uses: actions/cache@v4 + with: + path: ~/.sonar/cache + key: ${{ runner.os }}-sonar + restore-keys: ${{ runner.os }}-sonar + - name: Cache Gradle packages + uses: actions/cache@v4 + with: + path: ~/.gradle/caches + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} + restore-keys: ${{ runner.os }}-gradle + - name: Build and analyze + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: ./gradlew build sonar --info