Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 484 for projectD (0.16 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/22685")
        @ToBeFixedForIsolatedProjects(because = "Access to root project from sub projects")
        def "can visit and edit tar archive differently from two different projects in a multiproject build"() {
            given: "an archive in the root of a multiproject build"
            createTar('test.tar') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCacheTest.java

            cache.put(project1, new SetWithResolutionResult(null, artifacts));
    
            assertArrayEquals(
                    artifacts.toArray(new Artifact[0]),
                    cache.get(project1).getArtifacts().toArray(new Artifact[0]));
    
            ProjectArtifactsCache.Key project2 = new ProjectArtifactsCache.Key() {};
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:34:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenComponentMetadataRulesStatusIntegrationTest.groovy

                assert context.details.status == context.details.id.name == "projectA" ? "release" : "integration"
                assert context.details.statusScheme == ['integration', 'milestone', 'release']
        }
    }
    dependencies {
        compile 'group1:projectA:1.0'
        compile 'group2:projectB:2.0-SNAPSHOT'
        compile 'group2:projectC:${c.publishArtifactVersion}'
        components {
            all(StatusRule)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/SamplesIvyPublishIntegrationTest.groovy

            when:
            succeeds "publish"
    
            then:
            project1module.assertPublished()
            project1module.assertArtifactsPublished("project1-1.0.jar", "project1-1.0-javadoc.jar", "project1-1.0-sources.jar", "ivy-1.0.xml", "project1-1.0.module")
    
            project1module.parsedIvy.configurations.keySet() == ['default', 'compile', 'runtime', 'javadocElements', 'sourcesElements'] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyChangingModuleRemoteResolveIntegrationTest.groovy

            then: "Version 1.1 jar is downloaded"
            file('build').assertHasDescendants('projectA-1.1.jar')
    
            when: "Module meta-data is changed (new artifact)"
            module.artifact([name: 'other'])
            module.dependsOn("group", "projectB", "2.0")
            module.publish()
            def moduleB = ivyHttpRepo.module("group", "projectB", "2.0").publish()
    
            and: "Server handles requests"
            server.resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canUseDynamicVersions/projectB-1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
        <info organisation="test" module="projectB" revision="1.5" status="release"/>
        <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>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 436 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<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>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 392 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/projectB-2.1.5-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="2.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>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 394 bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

        def "build is executed with working directory set to where the build was launched from"() {
            def project1 = file("project1")
            def project2 = file("project2")
    
            project1.file('build.gradle') << """
    def expectedDir = new File(new URI('${project1.toURI()}'))
    def dir = new File('.')
    assert dir.canonicalFile == expectedDir.canonicalFile
    assert dir.directory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canUseDynamicVersions/build.gradle

                ivyPattern projectDir.absolutePath + '/[module]-[revision]-ivy.xml'
            }
        }
        compile group: 'test', name: 'projectA', version: '1.+'
    }
    
    file("projectA-1.2.jar").text = ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 391 bytes
    - Viewed (0)
Back to top