Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for downloadJavaDoc (0.17 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

            maven { url "${fakeRepo.uri}" }
        }
    
        dependencies {
            ${implementationConfiguration} project(':api')
            ${testImplementationConfiguration} 'foo.bar:coolLib:1.0'
        }
    
        idea.module.downloadJavadoc = true
    }
    """
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            IdeaProject project = withConnection { connection -> connection.action(new FetchIdeaModel()).run() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

               ${mavenCentralRepository()}
               dependencies { ${implementationConfiguration} 'com.google.guava:guava:18.0' }
               eclipse {
                   classpath {
                       downloadJavadoc = true
                   }
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            def attributes = project.classpath[0].classpathAttributes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

            }
    
            @Override
            public boolean downloadSources() {
                return false;
            }
    
            @Override
            public boolean downloadJavaDoc() {
                return false;
            }
    
            @Override
            public void visitUnresolvedDependency(UnresolvedDependencyResult unresolvedDependency) {
                //already handled elsewhere
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

        }
    
        dependencies {
            ${implementationConfiguration} project(':api')
            ${testImplementationConfiguration} 'foo.bar:coolLib:1.0'
        }
    
        idea.module.downloadJavadoc = true
    }
    """
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            IdeaProject project = loadToolingModel(IdeaProject)
    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