Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for compileDependency (0.23 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTestKitSetupIntegrationTest.groovy

        }
    
        def "wires creation of plugin under test metadata into build lifecycle"() {
            given:
            def module = mavenRepo.module('org.gradle.test', 'a', '1.3').publish()
            buildFile << compileDependency('implementation', module)
    
            when:
            succeeds 'build'
    
            then:
            executedAndNotSkipped PLUGIN_UNDER_TEST_METADATA_TASK_PATH
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                // Configure test binary to compile against binary under test
                Dependency compileDependency = project.getDependencies().create(project.files(testedBinary.getModuleFile()));
                testExecutable.getImportPathConfiguration().getDependencies().add(compileDependency);
    
                // Configure test binary to link against tested component compiled objects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top