Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for otherSettings (0.15 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCustomComponentIntegTest.groovy

            }
    
            when:
            mavenRepo.module('group', 'module', '1.0').publish()
    
            def otherSettings = file('consumer/settings.gradle')
            def otherBuild = file('consumer/build.gradle')
    
            otherSettings << "rootProject.name = 'consumer'"
            otherBuild << """
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ClasspathDependenciesAttributesIntegrationTest.groovy

            then:
            outputContains 'test-plugin applied'
        }
    
        def 'buildscript classpath resolves java-runtime variant'() {
            def otherSettings = file('other/settings.gradle')
            def otherBuild = file('other/build.gradle')
    
            otherSettings << """
    rootProject.name = 'other'
    """
            otherBuild << """
    group = 'org.other'
    version = '1.0'
    configurations {
        conf {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top