Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for downloadSources (0.18 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpComponentFactory.java

            }
    
            private boolean includeLibraries() {
                return !project.getPlugins().hasPlugin(JavaPlugin.class);
            }
    
            @Override
            public boolean downloadSources() {
                return false;
            }
    
            @Override
            public boolean downloadJavaDoc() {
                return false;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/EclipseDependenciesCreator.java

            }
    
            @Override
            public boolean isOffline() {
                return classpath.isProjectDependenciesOnly();
            }
    
            @Override
            public boolean downloadSources() {
                return classpath.isDownloadSources();
            }
    
            @Override
            public boolean downloadJavaDoc() {
                return classpath.isDownloadJavadoc();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

        sourceSets = []
    
        plusConfigurations << configurations.someConfig
    
        containers 'someFriendlyContainer', 'andYetAnotherContainer'
    
        defaultOutputDir = file('build-eclipse')
    
        downloadSources = false
        downloadJavadoc = true
    
        file {
          withXml { it.asNode().appendNode('message', 'be cool') }
        }
      }
    }
    """
    
            //then
            def vars = classpath.vars
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/internal/IdeaDependenciesProvider.java

                this.scope = scope;
            }
    
            @Override
            public boolean isOffline() {
                return ideaModule.isOffline();
            }
    
            @Override
            public boolean downloadSources() {
                return ideaModule.isDownloadSources();
            }
    
            @Override
            public boolean downloadJavaDoc() {
                return ideaModule.isDownloadJavadoc();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top