Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getClasspath (0.06 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                    .filter(f -> f.getName().endsWith(".java"))
                    .filter(new DeduplicatePackageInfoFiles())
                );
    
                task.setClasspath(extension.getClasspath());
    
                // TODO: This should be in Javadoc task
                DirectoryProperty generatedJavadocDirectory = project.getObjects().directoryProperty();
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Oct 02 14:18:24 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/model/GradleDistribution.kt

                exclude("getting-started.html")
            }
    
        @get:Classpath
        val coreJars: FileCollection
            get() = homeDir.asFileTree.matching {
                include("lib/*.jar")
            }
    
        @get:Classpath
        val agentJars: FileCollection
            get() = homeDir.asFileTree.matching {
                include("lib/agents/*.jar")
            }
    
        @get:Classpath
        val pluginJars: FileCollection
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 18:02:41 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt

    class LocalRepositoryEnvironmentProvider(project: Project) : CommandLineArgumentProvider, Named {
        private val projectName = project.name
    
        @Internal
        val localRepo = project.objects.fileCollection()
    
        @get:Classpath
        val jars: SortedSet<File>
            get() = localRepo.asFileTree.matching {
                include("**/*.jar")
                // https://github.com/gradle/gradle-private/issues/4253
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 18:02:41 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top