Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 318 for projectB (0.14 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/addsScalaFacetAndCompilerLibraries/settings.gradle

    include "project1", "project2", "project3", "project4"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 82 bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

                    from components.java
                }
            }
        }
    }
    
    project(":project1") {
        version = "1.0"
        dependencies {
            api project(":project2")
            api project(":project3")
        }
    }
    project(":project2") {
        version = "2.0"
        dependencies {
            api project(":project3")
        }
    }
    
    $append
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. architecture/build-state-model.md

      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
      
      build2["included build"]
      build_tree --> build2
      
      project3["root project"]
      build2 --> project3
      
      project4["project"]
      build2 --> project4
    
    ```
    
    ### Build process state
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/tests/showJarFiles.out

    project project1 is external to this build
    project project2 is external to this build
    project project3 is external to this build
    /repo/org.example/project1/1.0/project1-1.0.jar
    /repo/org.example/project2/1.0/project2-1.0.jar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 273 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyCustomStatusLatestVersionIntegrationTest.groovy

            project3.ivy.expectGet()
            project2.ivy.expectGet()
            project2.jar.expectGet()
    
            when:
            run 'retrieve'
    
            then:
            file('libs').assertHasDescendants("projectA-1.2.jar")
    
            when:
            server.resetExpectations()
            directoryList.allowGet()
            project3.ivy.expectHead()
            project2.ivy.expectHead()
            project2.jar.expectHead()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/tests/showJarFilesLocal.out

    project project1 is INTERNAL to this build
    project project2 is INTERNAL to this build
    project project3 is external to this build
    /project1/build/classes/java/main
    /project2/build/classes/java/main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/multiproject/standardLayouts/kotlin/settings.gradle.kts

    rootProject.name = "standard-layouts"
    // tag::hierarchical-layout[]
    include("project1", "project2:child1", "project3:child1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:23:53 UTC 2023
    - 156 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/multiproject/standardLayouts/groovy/settings.gradle

    rootProject.name = 'standard-layouts'
    // tag::hierarchical-layout[]
    include 'project1', 'project2:child1', 'project3:child1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 21:54:33 UTC 2024
    - 155 bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java

            // load the child project, which inherits from p0...
            MavenProject project0 = getProjectWithDependencies(pom0);
            MavenProject project1 = getProjectWithDependencies(pom1);
    
            assertNotNull(project1.getParent(), "Parent is null");
            assertEquals(pom0Basedir, project1.getParent().getBasedir());
            Map map = project1.getArtifactMap();
    
            assertNotNull(map, "No artifacts");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/settings.gradle

    rootProject.name = 'customizing-resolution-conditional-substitution-rule'
    ext.projectNames = ["project1", "project2", "project3"]
    include 'consumer'
    
    projectNames.each { name ->
        if (isIncluded(name)) {
            println "project $name is INTERNAL to this build"
            include name
        } else {
            println "project $name is external to this build"
        }
    }
    
    def isIncluded(String projectName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 593 bytes
    - Viewed (0)
Back to top