Include Spring Boot generation in build scans

Closes gh-62
This commit is contained in:
Stéphane Nicoll
2024-07-16 14:09:41 +02:00
parent df6a041570
commit 5860655435
2 changed files with 9 additions and 2 deletions

View File

@@ -3,4 +3,5 @@ org.gradle.jvmargs=-Xmx2g
kotlinVersion=1.9.24
javaFormatVersion=0.0.38
springBootVersion=3.3.0
springBootGeneration=3.3.x

View File

@@ -18,8 +18,8 @@ pluginManagement {
}
plugins {
id "com.gradle.enterprise" version "3.12.6"
id "io.spring.ge.conventions" version "0.0.13"
id "com.gradle.develocity" version "3.17.3"
id "io.spring.ge.conventions" version "0.0.17"
}
rootProject.name="spring-lifecycle-smoke-tests"
@@ -32,3 +32,9 @@ include "lifecycle-listener"
include "$group:${smokeTest.name}"
}
}
develocity {
buildScan {
value("Spring Boot generation", "${springBootGeneration}")
}
}