Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,638 for DSL (0.1 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningSamplesSpec.groovy

            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample('signing/maven-publish')
        def "publish attaches signatures with dsl #dsl"() {
            given:
            inDirectory(sample.dir.file(dsl))
    
            and:
            def artifactId = "my-library"
            def version = "1.0"
            def fileRepo = maven(sample.dir.file("$dsl/build/repos/releases"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformSpec.java

     *
     * @see org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)
     * @param <T> The transform specific parameter type.
     * @since 5.3
     */
    public interface TransformSpec<T extends TransformParameters> {
        /**
         * Attributes that match the variant that is consumed.
         *
         * @see org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/BinaryBasePluginTest.groovy

        def "registers BinarySpec"() {
            when:
            dsl {
                apply plugin: BinaryBasePlugin
                model {
                    baseBinary(BinarySpec) {
                    }
                }
            }
    
            then:
            realize("baseBinary") instanceof BinarySpec
        }
    
        def "adds a 'binaries' container to the project model"() {
            when:
            dsl {
                apply plugin: BinaryBasePlugin
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/CompilePrecompiledScriptPluginPlugins.kt

    import org.gradle.jvm.toolchain.JavaLauncher
    import org.gradle.kotlin.dsl.precompile.v1.PrecompiledPluginsBlock
    import org.gradle.kotlin.dsl.support.ImplicitImports
    import org.gradle.kotlin.dsl.support.KotlinCompilerOptions
    import org.gradle.kotlin.dsl.support.compileKotlinScriptModuleTo
    import org.gradle.kotlin.dsl.support.kotlinCompilerOptions
    import org.gradle.kotlin.dsl.support.scriptDefinitionFromTemplate
    import javax.inject.Inject
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/antmigration/SamplesAntImportIntegrationTest.groovy

            result.assertTaskNotExecuted(':build')
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("antMigration/fileDeps")
        def "can copy file and flatDir dependencies (#dsl)"() {
            given: "A sample Java project with file and flatDir dependencies"
            def dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top