1616
1717plugins {
1818 jacoco
19- id( " me.champeau.buildscan-recipes " ) version " 0.2.3 "
20- id( " org.nosphere .apache.rat" ) version " 0.8.1 "
21- id( " net.nemerosa .versioning" ) version " 3.1.0 "
22- id( " com.github.kt3k. coveralls" ) version " 2.12.2 "
19+ alias(libs.plugins.buildScanRecipes)
20+ alias(libs.plugins .apache.rat)
21+ alias(libs.plugins .versioning)
22+ alias(libs.plugins. coveralls)
2323 id(" me.champeau.convention-test" )
2424 id(" me.champeau.convention-funcTest" )
2525 id(" me.champeau.plugin-configuration" )
@@ -31,23 +31,22 @@ buildScanRecipes {
3131}
3232
3333dependencies {
34- val jmhVersion = " 1.37"
35- implementation(" org.openjdk.jmh:jmh-core:$jmhVersion " )
34+ implementation(libs.jmh.core)
3635
37- testImplementation(" org.spockframework: spock-core:2.3-groovy-4.0 " ) {
36+ testImplementation(libs. spock.core ) {
3837 exclude(mapOf (" group" to " org.apache.groovy" ))
3938 }
4039 testImplementation(localGroovy())
4140 testImplementation(gradleTestKit())
4241
43- pluginsUnderTest(" org.gradle.toolchains:foojay-resolver:1.0.0 " )
44- pluginsUnderTest(" com.gradleup. shadow:shadow-gradle-plugin:8.3.0 " )
42+ pluginsUnderTest(libs.foojayResolver )
43+ pluginsUnderTest(libs. shadow.gradlePlugin )
4544
46- testImplementation(" org.openjdk. jmh:jmh- core: $jmhVersion " )
47- testImplementation(" org.openjdk. jmh:jmh-generator-bytecode: $jmhVersion " )
48- testImplementation(" commons-io:commons-io:2.21.0 " )
49- testImplementation(" com.gradleup. shadow:shadow-gradle-plugin:8.3.0 " )
50- testRuntimeOnly(" org .junit.platform:junit-platform-launcher " )
45+ testImplementation(libs. jmh. core)
46+ testImplementation(libs. jmh.generatorBytecode )
47+ testImplementation(libs.apache.commonsIo )
48+ testImplementation(libs. shadow.gradlePlugin )
49+ testRuntimeOnly(libs .junit.platformLauncher )
5150}
5251
5352java {
0 commit comments