- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 105 for dsl (0.1 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-dsl-upstream-candidates.kt
// This file contains members that we should consider to pull upstream // and make available to all Kotlin DSL users package gradlebuild.basics.kotlindsl import org.gradle.process.ExecOperations import java.io.ByteArrayOutputStream import java.io.File /** * `dir / "sub"` is the same as `dir.resolve("sub")`. * * @see [File.resolve] */ operator fun File.div(child: String): File = resolve(child)
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon May 19 11:33:57 UTC 2025 - 965 bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
} gradlePlugin { website = "https://github.com/gradle/gradle/tree/HEAD/platforms/core-configuration/kotlin-dsl-plugins" vcsUrl = "https://github.com/gradle/gradle/tree/HEAD/platforms/core-configuration/kotlin-dsl-plugins" plugins.all { val plugin = this tags.addAll("Kotlin", "DSL") publishPluginsToTestRepository.configure {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Jul 02 12:28:02 UTC 2025 - 6.1K bytes - Viewed (0) -
build-logic/integration-testing-kotlin/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle-integ-tests.gradle.kts
dependencies { integTestRuntimeOnly(project(":kotlin-dsl-plugins")) { because("Tests require 'future-plugin-versions.properties' on the test classpath and the embedded executer needs them available") attributes { attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named("future-versions-resource")) } } integTestLocalRepository(project(":kotlin-dsl-plugins"))Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 30 14:53:14 UTC 2024 - 756 bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts
* limitations under the License. */ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { id("java-library") id("org.gradle.kotlin.kotlin-dsl") // this is 'kotlin-dsl' without version id("gradlebuild.code-quality") id("gradlebuild.detekt") id("gradlebuild.ci-reporting") id("gradlebuild.test-retry") id("gradlebuild.private-javadoc") }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Nov 11 23:24:30 UTC 2025 - 1.6K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts
Justin Van Dort <******@****.***> 1744038522 -0400
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Apr 11 20:15:47 UTC 2025 - 2.2K bytes - Viewed (0) -
.idea/gradle.xml
<option value="$PROJECT_DIR$/platforms/core-configuration/kotlin-dsl-integ-tests" /> <option value="$PROJECT_DIR$/platforms/core-configuration/kotlin-dsl-plugins" /> <option value="$PROJECT_DIR$/platforms/core-configuration/kotlin-dsl-provider-plugins" /> <option value="$PROJECT_DIR$/platforms/core-configuration/kotlin-dsl-tooling-builders" />Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Dec 11 18:02:10 UTC 2025 - 23.2K bytes - Viewed (0) -
.teamcity/test-buckets.json
"composite-builds", "daemon-server-worker", "daemon-services", "declarative-dsl-core", "declarative-dsl-internal-utils", "enterprise", "ivy", "jacoco", "jvm-services", "kotlin-dsl", "kotlin-dsl-integ-tests" ], "parallelizationMethod": { "name": "TestDistributionAlpine"Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Aug 01 00:23:04 UTC 2025 - 119.4K bytes - Viewed (0) -
build-logic/documentation/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") id("gradlebuild.build-logic.groovy-dsl-gradle-plugin") } description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs" dependencies { implementation("gradlebuild:basics") implementation("gradlebuild:module-identity") implementation(projects.buildUpdateUtils) implementation("com.github.javaparser:javaparser-core")Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Aug 14 10:59:00 UTC 2025 - 1.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocSuperTypeBuilder.java
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.docs.dsl.docbook; import gradlebuild.docs.dsl.docbook.model.ClassDoc; import gradlebuild.docs.dsl.source.model.ClassMetaData; import java.util.List; public class ClassDocSuperTypeBuilder { private final DslDocModel model;Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Feb 18 17:01:38 UTC 2025 - 2.1K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java
// DSL reference goes into dsl/ task.from(extension.getDslReference().getRenderedDocumentation(), sub -> sub.into("dsl")); // Javadocs reference goes into javadoc/ task.from(extension.getJavadocs().getRenderedDocumentation(), sub -> sub.into("javadoc")); // Dokka Kotlin DSL reference goes into kotlin-dsl/Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Jul 02 12:28:02 UTC 2025 - 7.6K bytes - Viewed (0)