Search Options

Results per page
Sort
Preferred Languages
Advance

Results 351 - 360 of 4,694 for Implementation (0.81 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

         *
         * @since 6.8
         */
        Property<JvmVendorSpec> getVendor();
    
        /**
         * The virtual machine implementation of the toolchain.
         * <p>
         * By default, any implementation (hotspot, j9, ...) is eligible.
         * <p>
         * Note that the implementation can only be configured if the {@link #getLanguageVersion() language version} is configured as well.
         *
         * @since 6.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. samples/simple-client/build.gradle.kts

    plugins {
      kotlin("jvm")
    }
    
    dependencies {
      implementation(projects.okhttp)
      implementation(libs.squareup.moshi)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 15 23:38:32 UTC 2022
    - 118 bytes
    - Viewed (0)
  3. samples/slack/build.gradle.kts

    plugins {
      kotlin("jvm")
    }
    
    dependencies {
      implementation(projects.mockwebserver)
      implementation(libs.squareup.moshi)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 15 23:38:32 UTC 2022
    - 125 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    ----
    tasks.jar {
        manifest {
            attributes(mapOf("Implementation-Title" to project.name,
                             "Implementation-Version" to project.version))
        }
    }
    ----
    
    .build.gradle
    [source.multi-language-sample,groovy]
    ----
    tasks.named('jar') {
        manifest {
            attributes('Implementation-Title': project.name,
                       'Implementation-Version': project.version)
        }
    }
    ----
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

        }
    
        def "conflict resolution between implementation and compile only dependencies"() {
            given:
            def shared10 = mavenRepo.module('org.gradle.test', 'shared', '1.0').publish()
            def shared11 = mavenRepo.module('org.gradle.test', 'shared', '1.1').publish()
            def implementationModule = mavenRepo.module('org.gradle.test', 'implementation', '1.0').dependsOn(shared11).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/kotlin/build.gradle.kts

    plugins {
        `java-library`
    }
    
    repositories {
        mavenCentral()
    }
    
    // tag::dependencies[]
    dependencies {
        // a dependency on Jackson Databind
        implementation("com.fasterxml.jackson.core:jackson-databind:2.8.9")
    
        // and a dependency on vert.x
        implementation("io.vertx:vertx-core:3.5.3")
    }
    // end::dependencies[]
    
    if (project.hasProperty("useBom")) {
    // tag::use_bom_rule[]
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/services/person-service/build.gradle

    plugins {
        id 'java'
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation "junit:junit:4.13"
        implementation project(':shared')
        implementation project(':api')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - 196 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-typeSafeProjectDependencies/groovy/web-service/build.gradle

    plugins {
        id 'java'
    }
    
    // tag::project-dependencies[]
    dependencies {
        implementation projects.utils
        implementation projects.api
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 172 bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    runtimeElements.exclude(group: "runtimeElements-group", module: "runtimeElements-module")
                    implementation.exclude(group: "implementation-group", module: "implementation-module")
                    runtimeOnly.exclude(group: "runtimeOnly-group", module: "runtimeOnly-module")
                }
    
                $dependencies
    
                publishing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/kotlin/my-app/app/build.gradle.kts

    // tag::app_dependencies[]
    plugins {
        id("application")
    }
    
    application {
        mainClass = "org.sample.myapp.Main"
    }
    
    dependencies {
        implementation("org.sample:number-utils:1.0")
        implementation("org.sample:string-utils:1.0")
    }
    // end::app_dependencies[]
    
    group = "org.sample"
    version = "1.0"
    
    repositories {
        mavenCentral()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 338 bytes
    - Viewed (0)
Back to top