Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,232 for child6 (0.11 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/flat-urls-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-child.xml

      <name>Model urls inheritance test child</name>
    
      <scm>
        <url>https://domain.org/override</url><!-- check that this won't impact child.site.url.inherit.append.path attribute inheritance -->
      </scm>
      <distributionManagement>
        <site><!-- overriding 1 element will reset all elements, but not child.site.url.inherit.append.path attribute -->
          <name>reset</name>
        </site>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                    .run()
            }
    
            then:
            def child2 = buildFinishedHandler.result.children.find { it.name == "child2" }
            child2.projectDependencies.isEmpty()
            child2.classpath.collect { it.file.name }.sort() == ['child1-1.0.jar']
            child2.classpath[0].source.name == 'child1-1.0-sources.jar'
            child2.classpath[0].javadoc.name == 'child1-1.0-javadoc.jar'
            taskExecuted(out, ":eclipseClosedDependencies")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesAndProjectDependencySubstitutionIntegrationTest.groovy

            resolve.prepare()
            resolve.addDefaultVariantDerivationStrategy()
            resolve.expectDefaultConfiguration("runtime")
            createDirs("child1", "child2")
            settingsFile << """
                rootProject.name = 'testproject'
                include 'child1', 'child2'
            """
            buildFile << """
                allprojects {
                    repositories {
                        maven { url '${mavenRepo.uri}' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/RunBuildDependenciesTaskBuilderTest.groovy

        Project child1
        Project child2
    
        def setup() {
            child1 = ProjectBuilder.builder().withName("child1").withParent(project).build()
            child2 = ProjectBuilder.builder().withName("child2").withParent(project).build()
    
            [project, child1, child2].each { it.pluginManager.apply(EclipsePlugin) }
            [child1, child2].each {
                it.plugins.apply(JavaPlugin)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model inheritance test parent: module directory != artifactId</name>
      <description>
        artifactId == "child-artifact-id"
        but expect path on SCM and site == "child"
        feature: support "project.directory" property, ressembling future model addition of "directory" element along "artifactId"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/idea/IdeaModelBuilderTest.groovy

    class IdeaModelBuilderTest extends AbstractProjectBuilderSpec {
        Project child1
        Project child2
    
        def setup() {
            child1 = ProjectBuilder.builder().withName("child1").withParent(project).build()
            child2 = ProjectBuilder.builder().withName("child2").withParent(project).build()
            [project, child1, child2].each { it.pluginManager.apply(IdeaPlugin) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 09 11:38:46 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

            outputContains(": - {12}")
            outputContains(": - [12]")
            outputContains(":child1 - {12}")
            outputContains(":child1 - [12]")
    
            and:
            succeeds()
            outputContains(": - {12}")
            outputContains(": - [12]")
            outputContains(":child1 - {12}")
            outputContains(":child1 - [12]")
        }
    
        @ToBeFixedForConfigurationCache(because = "test expects scripts evaluation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FilteredConfigurationIntegrationTest.groovy

        compile "group:test1:1.0"
        compile project(':child1')
        compile project(':child2')
    }
    project(':child1') {
        artifacts {
            compile file("child1.jar")
        }
        dependencies {
            compile files("child1-lib.jar")
            compile "group:test2:1.0"
        }
    }
    project(':child2') {
        artifacts {
            compile file("child2.jar")
        }
    }
    
    task verify {
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top