Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,310 for DSL (0.02 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors.kt

     */
    
    package org.gradle.kotlin.dsl.accessors.tasks
    
    import org.gradle.api.DefaultTask
    import org.gradle.api.Project
    import org.gradle.api.tasks.TaskAction
    import org.gradle.internal.serialization.Cached
    
    import org.gradle.kotlin.dsl.accessors.ProjectSchemaProvider
    import org.gradle.kotlin.dsl.accessors.TypedProjectSchema
    import org.gradle.kotlin.dsl.accessors.accessible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesDefiningUsingConfigurationsIntegrationTest.groovy

        def "can declare and resolve custom configuration with #dsl dsl"() {
            setup:
            executer.inDirectory(sample.dir.file(dsl))
    
            when:
            succeeds('preCompileJsps')
    
            then:
            sample.dir.file("$dsl/build/compiled-jsps/org/apache/jsp/hello_jsp.java").isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/PolyglotDslTestInterceptor.java

            for (GradleDsl dsl : GradleDsl.values()) {
                if (GradleDsl.DECLARATIVE == dsl) {
                    // TODO: Declarative DSL needs more feature in order to run these tests
                    continue;
                }
                add(new DslExecution(dsl));
            }
        }
    
        private static class DslExecution extends Execution {
            private final GradleDsl dsl;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerSamplesEndUserIntegrationTest.groovy

        def "automaticClasspathInjectionQuickstart with #dsl dsl"() {
            expect:
            executer.inDirectory(sample.dir.file(dsl))
            succeeds "check"
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("testKit/automaticClasspathInjectionCustomTestSourceSet")
        def "automaticClasspathInjectionCustomTestSourceSet with #dsl dsl"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/build.gradle.kts

    import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    
    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.publish-public-libraries")
    
        embeddedKotlin("plugin.serialization")
    }
    
    description = "Common shared classes used by the Declarative DSL"
    
    tasks.withType<KotlinCompile>().configureEach {
        compilerOptions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslTemplatesDeprecationsIntegrationTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.integration
    
    import org.gradle.kotlin.dsl.fixtures.AbstractKotlinIntegrationTest
    import org.junit.Test
    
    
    class KotlinDslTemplatesDeprecationsIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        @Suppress("DEPRECATION")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginOptions.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.plugins.dsl
    
    import org.gradle.api.Project
    import org.gradle.api.model.ObjectFactory
    import org.gradle.api.provider.Property
    import org.gradle.internal.deprecation.DeprecationLogger
    import org.gradle.kotlin.dsl.*
    
    
    /**
     * Options for the `kotlin-dsl` plugin.
     *
     * @see KotlinDslPlugin
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 06:37:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/MutationRuleApplicationOrderIntegrationTest.groovy

                    }
                }
            '''
    
            then:
            succeeds "echo"
    
            and:
            output.contains "mutations: first dsl, second dsl, third dsl, fourth dsl"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesDeclaringDependenciesIntegrationTest.groovy

        def "can use declare and resolve dependency with concrete version with #dsl dsl"() {
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            succeeds(COPY_LIBS_TASK_NAME)
    
            then:
            dslDir.file('build/libs/spring-web-5.0.2.RELEASE.jar').isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    |Yes
    
    |6
    |Kotlin / Kotlin DSL
    |Binary plugin
    |an abstract class that implements the `apply(Project project)` method of the `Plugin<Project>` interface in Kotlin and/or Kotlin DSL.
    |Yes
    
    |7
    |Groovy / Groovy DSL
    |Binary plugin
    |an abstract class that implements the `apply(Project project)` method of the `Plugin<Project>` interface in Groovy and/or Groovy DSL.
    |Okfootnote:2[]
    
    |8
    |Scala
    |Binary plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top