Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 484 for project2 (0.11 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

            then:
            def buildDir = file('build')
            buildDir.assertHasDescendants("projectA-1.2.jar", "projectB-1.2.jar")
        }
    
        def "mavenLocal ignores missing jar for module with packaging 'pom'"() {
            given:
            m2.mavenRepo().module('group', 'projectB', '1.2').publish()
            def pomModule = m2.mavenRepo().module('group', 'projectA', '1.2')
            pomModule.packaging = 'pom'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

        }
    }
    
    project(':projectA') {
        dependencies {
            compileOnly 'org.gradle.test:compileOnly:1.0'
        }
    }
    
    project(':projectB') {
        dependencies {
            api project(':projectA')
        }
    
        task checkClasspath {
            def compileClasspathFiles = configurations.compileClasspath.files
            def projectAJavaDestDir = project(':projectA').compileJava.destinationDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

        def "locates prebuilt library in another project"() {
            given:
            app.executable.writeSources(file("projectA/src/main"))
            app.librarySources*.writeToDir(file("projectA/src/main"))
            app.libraryHeader.writeToDir(file("projectB/libs/src/hello"))
    
            and:
            settingsFile.text = "include ':projectA', ':projectB'"
            buildFile << """
    project(':projectA') {
        apply plugin: 'cpp'
        model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

                """
            }
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseProject projectA = project.children[0]
            EclipseProject projectB = project.children[1]
            EclipseProject projectC = project.children[2]
            EclipseProject projectD = project.children[3]
    
            then:
            projectA.classpath.collect { it.file.name } as Set == [ 'commons-lang3-3.9.jar' ] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top