Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 481 for ProjectA (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canHaveConfigurationHierarchy/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"/>
    		<conf name="api" visibility="public"/>
    	</configurations>
    	<publications>
    		<artifact name="projectA" type="jar" ext="jar" conf="*"/>
    	</publications>
        <dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 632 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canUseDynamicVersions/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="*"/>
    	</publications>
        <dependencies>
            <dependency org="test" name="projectB" rev="latest.release" conf="runtime->default"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 519 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canHaveCycleInDependencyGraph/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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            from configurations.compile
        }
        """
    
            when:
            projectA.pom.expectGet()
            projectA.artifact.expectGet()
            projectB.pom.expectGet()
            projectB.artifact.expectGet()
            mavenHttpRepo.getModuleMetaData("org.test", "projectC").expectGet()
            projectC.pom.expectGet()
            projectC.artifact.expectGet()
    
            and:
            run 'retrieve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

    configurations { compile }
    
    dependencies {
        compile group: "group", name: "projectA", version: "1.+"
    }
    """
            when:
            def projectA1 = ivyHttpRepo.module("group", "projectA", "1.0.0").
                dependsOn("group", "projectB", "[1.0,1.2)").
                dependsOn("group", "projectC", "1.0.0").
                publish()
            def projectB11 = ivyHttpRepo.module("group", "projectB", "1.1").withStatus("milestone").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLatestResolveIntegrationTest.groovy

            mavenRepo().module('org.test', 'projectA', '1.0').dependsOn('org.test', 'projectB', '1.0').publish()
    
            buildFile << """
                dependencies {
                    compile 'org.test:projectA:1.0'
                }"""
    
            when:
            run 'retrieve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

            given:
            def projectA = mavenHttpRepo.module('group', 'projectA', '1.2')
            projectA.dependsOn('group', 'projectC', '1.2')
            projectA.publish()
            def projectB = mavenHttpRepo.module('group', 'projectB', '1.2')
            projectB.artifact(classifier: 'classy')
            projectB.dependsOn('group', 'projectC', '1.2')
            projectB.publish()
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top