Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for sourceControl (0.28 sec)

  1. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

                apply plugin: 'java'
                group = 'org.test'
                version = '1.2'
            """
        }
    
        def dependency(String moduleName) {
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:${moduleName}") {
                            from(GitVersionControlSpec) {
                                url = uri("${repo.url}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleApiExtensionsIntegrationTest.kt

                """
                allprojects {
                    container(String::class)
                }
                """
            )
    
            withDefaultSettings().appendText(
                """
                sourceControl {
                    vcsMappings {
                        withModule("some:thing") {
                            from(GitVersionControlSpec::class) {
                                url = uri("")
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 15:53:16 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

        }
    
        def "reports a problem when source dependencies are present"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:buildB") {
                            from(GitVersionControlSpec) {
                                url = uri("some-repo")
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerIncrementalExportIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "regenerates manifest when Swift dependencies added or removed"() {
            given:
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("test:test") { from(GitVersionControlSpec) { url = uri('repo') } }
                    }
                }
            """
            swiftBuild()
    
    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/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVersionSelectionIntegrationTest.groovy

                gradle.rootProject {
                    configurations {
                        compile
                    }
                    group = 'test'
                    version = '1.2'
                }
                sourceControl.vcsMappings.withModule("test:test") {
                    from(GitVersionControlSpec) {
                        url = uri('${repo.url}')
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top