- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for gradleModule (0.07 sec)
-
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
from(components["java"]) artifactId = gradleModule.identity.baseName.get() versionMapping { usage("java-api") { fromResolutionResult() } usage("java-runtime") { fromResolutionResult() } } pom { packaging = "jar" name = gradleModule.identity.baseName.map { "${project.group}:$it" } } }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 30 16:56:31 UTC 2025 - 5.7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle
// is the "main" one that is also shown in HTML report def apiChangesJsonDirectory = layout.projectDirectory.dir("src/changes/accepted-changes") def compatibilityBaselineVersion = gradleModule.identity.releasedVersions.get().mostRecentRelease.version def ARTIFACT_TYPE = Attribute.of('artifactType', String) def RUNTIME_ATTRIBUTE = objects.named(Usage, Usage.JAVA_RUNTIME)
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 8.9K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts
import gradlebuild.identity.provider.BuildTimestampValueSource import gradlebuild.identity.tasks.BuildReceipt import java.util.Optional plugins { `java-base` } val gradleModule = extensions.create<GradleModuleExtension>(GradleModuleExtension.NAME).apply { published = false targetRuntimes { // By default, assume a library targets only the daemonRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 30 16:56:31 UTC 2025 - 5.9K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts
dependencies { "crossVersionTestImplementation"(testFixtures(project(":tooling-api"))) } } } val releasedVersions = gradleModule.identity.releasedVersions.orNull fun createQuickFeedbackTasks() { val testType = TestType.CROSSVERSION val defaultExecuter = "embedded" val prefix = testType.prefixRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Sep 05 02:31:24 UTC 2025 - 4.5K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts
) } val updateAgpVersions = tasks.register<UpdateAgpVersions>("updateAgpVersions") { comment = " Generated - Update by running `./gradlew updateAgpVersions`" currentGradleVersion = gradleModule.identity.version propertiesFile = layout.projectDirectory.file("gradle/dependency-management/agp-versions.properties")
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Oct 24 09:10:28 UTC 2025 - 2.3K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt
*/ abstract class GradleModuleExtension(val tasks: TaskContainer, val objects: ObjectFactory) { companion object { const val NAME: String = "gradleModule" } @get:Nested abstract val identity: ModuleIdentity fun identity(action: ModuleIdentity.() -> Unit) { action(identity) } /**
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 30 16:56:31 UTC 2025 - 2.4K bytes - Viewed (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts
} val intTestHomeDir = repoRoot().dir("intTestHomeDir") val cachesCleanerService = gradle.sharedServices.registerIfAbsent("cachesCleaner", CachesCleaner::class) { parameters.gradleVersion = gradleModule.identity.version.map { it.version } parameters.homeDir = intTestHomeDir } fun Gradle.rootBuild(): Gradle = parent.let { it?.rootBuild() ?: this } tasks.withType<DistributionTest>().configureEach {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Aug 18 18:02:41 UTC 2025 - 3.8K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
options.release = provider { throw GradleException("This task '${name}' is not associated with a compilation. Associate it with a compilation on the '${JvmCompileExtension.NAME}' extension.") } } val gradleModule = the<GradleModuleExtension>() the<JvmCompileExtension>().apply { compilations { configureEach { // Everything compiles to Java 17 by default targetJvmVersion = 17 }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:44:41 UTC 2025 - 18.9K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
} } publishing.publications.withType<MavenPublication>().configureEach { if (name == "pluginMaven") { groupId = project.group.toString() artifactId = gradleModule.identity.baseName.get() } pom { licenses { license { name = "The Apache License, Version 2.0" url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Jul 02 12:28:02 UTC 2025 - 6.1K bytes - Viewed (0)