Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 346 for projectD (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/initialization/ProjectDirectoryProjectSpecTest.groovy

        }
    
        def "select project fails when multiple projects have specified project dir"() {
            ProjectIdentifier project1 = project(dir);
            ProjectIdentifier project2 = project(dir);
    
            when:
            spec.selectProject("settings 'foo'", registry(project1, project2));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/11703")
        def "nested bean from closure can be used with the build cache"() {
            def project1 = file("project1").createDir()
            def project2 = file("project2").createDir()
            [project1, project2].each { projectDir ->
                def buildFile = projectDir.file("build.gradle.kts")
                setupTaskWithNestedAction('(File) -> Unit', '', projectDir)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestWorkerFunctionalTest.groovy

        }
    
        def "shows test class execution #description test class name in work-in-progress area of console for multi-project build"() {
            given:
            settingsFile << "include 'project1', 'project2'"
            buildFile << """
                subprojects {
                    apply plugin: 'java-library'
    
                    ${RepoScriptBlockUtil.mavenCentralRepository()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top