Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for sourceControl (0.23 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/SettingsDelegate.kt

        override fun getToolchainManagement(): ToolchainManagement =
            delegate.toolchainManagement
    
        override fun sourceControl(configuration: Action<in SourceControl>) =
            delegate.sourceControl(configuration)
    
        override fun getPlugins(): PluginContainer =
            delegate.plugins
    
        override fun apply(closure: Closure<Any>) =
            delegate.apply(closure)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/VersionControlServices.java

    import org.gradle.internal.service.scopes.AbstractGradleModuleServices;
    import org.gradle.internal.typeconversion.NotationParser;
    import org.gradle.internal.typeconversion.NotationParserBuilder;
    import org.gradle.vcs.SourceControl;
    import org.gradle.vcs.VcsMappings;
    import org.gradle.vcs.internal.DefaultSourceControl;
    import org.gradle.vcs.internal.DefaultVcsMappingFactory;
    import org.gradle.vcs.internal.DefaultVcsMappings;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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