Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,719 for Implementation (0.18 sec)

  1. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

    configure(project(":a")){
        dependencies {
            implementation files("bar.jar")
            implementation project(':b')
        }
    }
    
    configure(project(":b")){
        dependencies {
            implementation project(':c')
            implementation files("baz.jar")
    
        }
    }
    
    configure(project(":c")){
        dependencies {
            implementation files("foo.jar")
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-enforcedConstraintsFromBOM/kotlin/build.gradle.kts

        implementation(enforcedPlatform("org.springframework.boot:spring-boot-dependencies:1.5.8.RELEASE"))
    
        // define dependencies without versions
        implementation("com.google.code.gson:gson")
        implementation("dom4j:dom4j")
    
        // this version will be overridden by the one found in the BOM
        implementation("org.codehaus.groovy:groovy:1.8.6")
    }
    // end::dependency-on-bom[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 786 bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

         *
         * @param parser The XML parser
         * @return Name of the custom implementation; otherwise {@code null}
         */
        private static String parseImplementation(final XmlPullParser parser) {
            return parser.getAttributeValue(null, "implementation");
        }
    
        /**
         * Attempts to load the named implementation, uses default implementation if no name is given.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * </ul>
     *
     * <p>
     * A value source implementation will most likely take parameters. To do this create a
     * subtype of {@link ValueSourceParameters} and declare this type as the type parameter
     * to the value source implementation.
     * </p>
     *
     * <p>
     * A value source implementation doesn't have to be thread-safe, as the single call
     * to {@link #obtain()} is synchronized.
     * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/build.gradle.kts

        api(project(":declarative-dsl-tooling-models"))
        api(libs.kotlinStdlib)
    
    
        implementation(libs.inject)
        testImplementation(libs.mockitoKotlin2)
    
        implementation(project(":base-services"))
        implementation(project(":resources"))
        implementation(project(":model-core"))
    
        implementation(libs.guava)
        implementation(libs.kotlinReflect)
    
        integTestImplementation(project(":internal-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-profile/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Provides high-level insights into a Gradle build (--profile)"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
        api(projects.time)
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":enterprise-logging"))
    
        implementation(project(":logging"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 672 bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/build.gradle.kts

     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Controls for the instrumentation agent potentially applied to the process"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    
        implementation(projects.baseServices)
        implementation(projects.functional)
    
        implementation(libs.jsr305)
        implementation(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/build.gradle.kts

        api(project(":problems-api"))
        api(project(":snapshots"))
    
        implementation(projects.time)
        implementation(project(":logging"))
        implementation(projects.enterpriseOperations) {
            because("Adds generic build operations for the execution engine")
        }
    
        implementation(libs.commonsLang)
        implementation(libs.commonsIo)
    
        testImplementation(project(":native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesKotlinDSLDependenciesIntegrationTest.groovy

                    val ${suiteName}Implementation = configurations.getByName("${suiteName}Implementation")
                    // We might get junit included too, dependending on the test suite, so filter it
                    val deps = ${suiteName}Implementation.dependencies
                                .filter { it.name != "junit-jupiter" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/build.gradle.kts

                dependencies {
                    implementation(kotlin("test-common"))
                    implementation(kotlin("test-annotations-common"))
                }
            }
    
            named("jsTest") {
                dependencies {
                    implementation(kotlin("test-js"))
                }
            }
    
            named("jvmTest") {
                dependencies {
                    implementation(kotlin("test-junit5"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top