- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 414 for gradlew (0.14 sec)
-
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts
plugins { `java-base` } val moduleIdentity = extensions.create<ModuleIdentityExtension>("moduleIdentity") group = "org.gradle" version = collectVersionDetails(moduleIdentity) fun Project.collectVersionDetails(moduleIdentity: ModuleIdentityExtension): String { moduleIdentity.baseName.convention("gradle-$name") val baseVersion = trimmedContentsOfFile("version.txt") val finalRelease = buildFinalRelease
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 4.9K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 17 08:58:33 UTC 2024 - 1.4K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild.cleanup.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ import gradlebuild.basics.repoRoot import gradlebuild.cleanup.services.DaemonTracker gradle.sharedServices.registerIfAbsent("daemonTracker", DaemonTracker::class) { parameters.rootProjectDir = repoRoot()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jan 20 15:24:40 UTC 2023 - 828 bytes - Viewed (0) -
.teamcity/src/test/kotlin/PromotionProjectTests.kt
) fun `publish milestone build type runs three gradle invocations`(branch: String, promoteTaskName: String) { val model = setupModelFor(branch) val nightlySnapshot = model.findBuildTypeByName("Release - Milestone") val steps = nightlySnapshot.steps.items assertEquals(3, steps.size)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Feb 13 14:18:23 UTC 2024 - 13.4K bytes - Viewed (0) -
build-logic-settings/build-environment/src/main/kotlin/gradlebuild.build-environment.settings.gradle.kts
* limitations under the License. */ import gradlebuild.basics.BuildEnvironmentExtension import gradlebuild.basics.BuildEnvironmentService with(layout.rootDirectory) { gradle.lifecycle.beforeProject { val service = gradle.sharedServices.registerIfAbsent("buildEnvironmentService", BuildEnvironmentService::class) { check(project.path == ":") { // We rely on the fact that root is configured first
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 07:44:12 UTC 2024 - 1.6K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts
import gradlebuild.binarycompatibility.JapicmpTask if (BuildEnvironment.isCiServer && project.name != "gradle-kotlin-dsl-accessors") { val globalExtension = rootProject.extensions.getByType<TestFilesCleanupBuildServiceRootExtension>() project.gradle.taskGraph.whenReady { val allTasks = ******@****.***ks
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 11 14:21:47 UTC 2024 - 2.1K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
doFirst { val moduleBaseDir = localRepository.get().dir("org/gradle/${baseName.get()}").asFile if (moduleBaseDir.exists()) { // Make sure artifacts do not pile up locally moduleBaseDir.deleteRecursively() } } doLast { localRepository.get().file("org/gradle/${baseName.get()}/maven-metadata.xml").asFile.apply {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 19 13:21:47 UTC 2024 - 5.9K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.detekt.gradle.kts
detekt { // enable all default rules buildUponDefaultConfig = true // customize some of the rules, until we can fix the offending cases config.convention(project.isolated.rootProject.projectDirectory.file("gradle/detekt.yml")) // also check the project build file source.from(project.buildFile) } pluginManager.withPlugin("gradlebuild.code-quality") { tasks { named("codeQuality") {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jun 20 10:11:35 UTC 2024 - 1.1K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ plugins { id("java-library") id("groovy-gradle-plugin") id("gradlebuild.code-quality") id("gradlebuild.ci-reporting") id("gradlebuild.test-retry") id("gradlebuild.private-javadoc") } java.configureJavaToolChain() dependencies {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Sep 30 15:18:07 UTC 2024 - 2.3K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
import groovy.lang.GroovySystem import net.ltgt.gradle.errorprone.CheckSeverity import net.ltgt.gradle.errorprone.errorprone import org.gradle.util.internal.VersionNumber /* * Copyright 2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 6.1K bytes - Viewed (0)