Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for sourceControl (0.23 sec)

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

        @Rule
        GitFileRepository repoC = new GitFileRepository('buildC', temporaryFolder.getTestDirectory())
    
        def setup() {
            settingsFile << """
                rootProject.name = 'buildA'
                sourceControl {
                    vcsMappings {
                        withModule("org.test:buildB") {
                            from(GitVersionControlSpec) {
                                url = uri("${repoB.url}")
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/OfflineSourceDependencyIntegrationTest.groovy

                    tasks.register('resolve') {
                        inputs.files configurations.compile
                        doLast { configurations.compile.each { } }
                    }
                }
                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
    - 3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        /**
         * Configures source control.
         *
         * @since 4.4
         */
        void sourceControl(Action<? super SourceControl> configuration);
    
        /**
         * Returns the source control configuration.
         *
         * @since 4.4
         */
        SourceControl getSourceControl();
    
        /**
         * Enables a feature preview by name.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesCppInteroperabilityIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can depend on both swift and cpp libraries from VCS"() {
            given:
            createDirs("app")
            settingsFile << """
                include 'app'
    
                sourceControl {
                    vcsMappings {
                        all { details ->
                            if (details.requested.group == "org.gradle.swift") {
                                from(GitVersionControlSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppDependenciesIntegrationTest.groovy

        // on Windows.
        @ToBeFixedForConfigurationCache
        def "from VCS"() {
            given:
            createDirs("app")
            settingsFile << """
                include 'app'
    
                sourceControl {
                    vcsMappings {
                        all { details ->
                            if (details.requested.group == "org.gradle.cpp") {
                                from(${GitVersionControlSpec.name}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "can depend on swift libraries from VCS"() {
            given:
            createDirs("app")
            settingsFile << """
                include 'app'
    
                sourceControl {
                    vcsMappings {
                        all { details ->
                            if (details.requested.group == "org.gradle.swift") {
                                from(GitVersionControlSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

                            doLast {
                                configurations.compile.each { }
                            }
                        }
                    }
                }
                sourceControl.vcsMappings.withModule("test:test") {
                    from(GitVersionControlSpec) {
                        url = uri('${repo.url}')
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.process.internal.worker.WorkerProcessFactory> is not annotated with @ServiceScope in (WorkerProcessFactory.java:0)
    Class <org.gradle.vcs.SourceControl> is not annotated with @ServiceScope in (SourceControl.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

                group = 'org.test'
                version = '1.2'
            """
            repo.commit("initial version")
            repo.createLightWeightTag("1.2")
    
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:${dependencyName}") {
                            from(GitVersionControlSpec) {
                                url = uri("${repo.url}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

                        assert versionFile
                        assert versionFile.text == repoVersion
                    }
                }
            """
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:dep") {
                            from(GitVersionControlSpec) {
                                url = "${repo.url}"
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top