Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for integTestImplementation (0.6 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            file("impl/build.gradle") << """
                sourceSets { integTest.${language.name}.srcDir "src/integTest/${language.name}" }
                dependencies { integTestImplementation project(":other") }
                dependencies { integTestImplementation localGroovy() }
            """
            file("impl/src/integTest/${language.name}/SomeIntegTest.${language.name}") << "class SomeIntegTest extends Other {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

                // intentionally setting lower versions of the same dependencies on the `test` suite to show that no conflict resolution should be taking place
                integTestImplementation project
                integTestImplementation 'com.google.guava:guava:29.0-jre'
                integTestCompileOnly 'javax.servlet:servlet-api:2.5'
                integTestRuntimeOnly 'mysql:mysql-connector-java:6.0.6'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/build.gradle.kts

        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
        testImplementation(libs.xmlunit)
    
    
        integTestImplementation(project(":internal-integ-testing"))
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeaturePublishingIntegrationTest.groovy

                        if ($sources) { withSourcesJar() }
                        if (!$published) { disablePublication() }
                    }
                }
    
                dependencies {
                    integTestImplementation(project(":")) {
                        capabilities {
                            requireCapability 'com.acme:mylib-integ-test-fixtures'
                        }
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

                apply plugin: 'eclipse'
    
                ${mavenCentralRepository()}
    
                sourceSets {
                    integTest
                }
    
                dependencies {
                    integTestImplementation 'com.google.guava:guava:18.0'
                }
            """
    
            when:
            run 'eclipse'
    
            then:
            EclipseClasspathFixture classpath = classpath('.')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    Sometimes you need to create your own configurations and attach dependencies to them.
    The following example declares two new configurations:
    
     * `db`, to which we add a PostgreSQL dependency
     * `integTestImplementation`, which is configured to extend the `testImplementation` configuration and to which we add a different dependency
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            """
            if (language == CompiledLanguage.GROOVY) {
                buildFile << """
                    dependencies {
                        integTestImplementation localGroovy()
                    }
    """
            }
    
            outputs.snapshot { run "compileIntegTest${language.capitalizedName}", language.compileTaskName }
    
            when: //when A class is changed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                    }
                }
    
                // mimics behavior from https://github.com/JetBrains/kotlin/commit/4a172286217a1a7d4e7a7f0eb6a0bc53ebf56515
                configurations.integTestImplementation.dependencies.all { }
    
                testing {
                    suites {
                        integTest {
                            useJUnit('4.12')
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
Back to top