- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for groovyVersion (0.07 sec)
-
build-logic-commons/build-platform/build.gradle.kts
// Here you should declare versions which should be shared by the different modules of buildSrc itself val javaParserVersion = "3.18.0" val groovyVersion = GroovySystem.getVersion() val isGroovy4 = VersionNumber.parse(groovyVersion).major >= 4 val codenarcVersion = if (isGroovy4) "3.1.0-groovy-4.0" else "3.1.0" val spockVersion = if (isGroovy4) "2.2-groovy-4.0" else "2.2-groovy-3.0" val asmVersion = "9.7"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 21:53:00 UTC 2024 - 4.8K bytes - Viewed (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt
* limitations under the License. */ package gradlebuild.modules.extension import gradlebuild.modules.model.License abstract class ExternalModulesExtension(isBundleGroovy4: Boolean) { val groovyVersion = if (isBundleGroovy4) "4.0.22" else "3.0.22" val groovyGroup = if (isBundleGroovy4) "org.apache.groovy" else "org.codehaus.groovy" val configurationCacheReportVersion = "1.22" val gradleIdeStarterVersion = "0.3"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 08:06:17 UTC 2024 - 15.5K bytes - Viewed (0)