Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 451 for projectC (0.14 sec)

  1. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectA-1.2-ivy.xml

    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectA"
    		revision="1.2"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectA" type="jar" ext="jar" conf="runtime"/>
    	</publications>
        <dependencies>
            <dependency org="test" name="projectB" rev="1.5" conf="runtime->default"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 514 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectA-2.0-ivy.xml

    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectA"
    		revision="2.0"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectA" type="jar" ext="jar" conf="runtime"/>
    	</publications>
        <dependencies>
            <dependency org="test" name="projectB" rev="2.1.5" conf="runtime->default"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 516 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canHaveCycleInDependencyGraph/projectB-1.5-ivy.xml

    	<info organisation="test"
    		module="projectB"
    		revision="1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
        <dependencies>
            <dependency org="test" name="projectA" rev="1.2" conf="runtime->default"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/settings.gradle.kts

    rootProject.name = "customizing-resolution-conditional-substitution-rule"
    val projectNames = listOf("project1", "project2", "project3")
    include("consumer")
    
    projectNames.forEach { name ->
        if (isIncluded(name)) {
            println("project $name is INTERNAL to this build")
            include(name)
        } else {
            println("project $name is external to this build")
        }
    }
    
    fun isIncluded(projectName: String): Boolean {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 616 bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

        def "can use work actions from multiple projects when running with --parallel"() {
            createDirs("project1", "project2", "project3", "project4", "project5")
            settingsFile << """
                include('project1')
                include('project2')
                include('project3')
                include('project4')
                include('project5')
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFileTest.groovy

            solutionFile.projects = [project1, project2]
    
            then:
            generatedSolution.content ==
                    """Microsoft Visual Studio Solution File, Format Version 11.00
    # Visual C++ Express 2010
    
    Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "project1", "${project1.file.absolutePath}", "${getUUID(project1.file)}"
    EndProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencySubstitutionIntegrationTest.groovy

        void "project dependency substituted with external dependency"() {
            createDirs("project1", "project2")
            runTask("idea", "include 'project1', 'project2'", """
    allprojects {
        apply plugin: "java"
        apply plugin: "idea"
    }
    
    project(":project2") {
        ${mavenCentralRepository()}
    
        dependencies {
            implementation project(":project1")
        }
    
        configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/ivy/IvySftpRepoDynamicRevisionIntegrationTest.groovy

            projectA1.ivy.expectFileDownload()
    
            server.expectStat('/repo/group/projectB/')
            server.expectDirectoryList('/repo/group/projectB/')
    
            projectB1.ivy.expectMetadataRetrieve()
            projectB1.ivy.expectFileDownload()
    
            projectA1.jar.expectMetadataRetrieve()
            projectA1.jar.expectFileDownload()
    
            projectB1.jar.expectMetadataRetrieve()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top