- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 25 for getClasspath (0.07 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/LoggerUsageTask.java
spec.classpath(getClasspath()); getClassDirectories().forEach(spec::args); }); } @Classpath public FileCollection getClasspath() { return classpath; } public void setClasspath(FileCollection classpath) { this.classpath = classpath; } @InputFiles
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jun 17 08:59:22 GMT 2021 - 2.8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java
return new MetadataGraph(getTree(), true, true); } return null; } // ---------------------------------------------------------------------------- public ClasspathContainer getClasspath(ArtifactScopeEnum scope) throws MetadataGraphTransformationException, MetadataResolutionException { if (classpathTransformation == null) { return null; }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/SplitPackagesAuditTask.java
buildDirs.put(project.getBuildDir(), project.getPath()); } return buildDirs; } @CompileClasspath public FileCollection getClasspath() { return classpath.filter(File::exists); } public void setClasspath(FileCollection classpath) { this.classpath = classpath; } @InputFiles @SkipWhenEmpty @PathSensitive(PathSensitivity.RELATIVE)
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 08 22:04:23 GMT 2021 - 14.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathContainer.java
} classpath.add(md); return this; } // ------------------------------------------------------------------------------------------- public List<ArtifactMetadata> getClasspath() { return classpath; } // ------------------------------------------------------------------------------------------- public MetadataTreeNode getClasspathAsTree() throws MetadataResolutionException {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 4.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java
*/ public abstract ConfigurableFileCollection getKotlinDslSource(); /** * The runtime classpath of the source code to be documented. */ public abstract ConfigurableFileCollection getClasspath(); /** * A working directory to be used to stage documentation as its generated. * All of the sections of the documentation have working directories off of this one. */Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Aug 20 14:11:17 GMT 2024 - 4.4K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy
@PathSensitive(PathSensitivity.NONE) @InputFile abstract RegularFileProperty getStylesheetHighlightFile(); @Classpath abstract ConfigurableFileCollection getClasspath(); @OutputDirectory abstract DirectoryProperty getDestinationDirectory(); @Inject abstract WorkerLeaseService getWorkerLeaseService(); @Inject abstract ObjectFactory getObjects()Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 04 07:24:54 GMT 2024 - 4.7K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java
assertNotNull(res, "null classpath container after runtime transform"); assertNotNull(res.getClasspath(), "null classpath after runtime transform"); assertEquals(4, res.getClasspath().size(), "runtime classpath should have 4 entries"); ArtifactMetadata md = res.getClasspath().get(3); assertEquals("1.1", md.getVersion(), "runtime artifact version should be 1.1"); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.7K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java
spec.getSourceRoots().from(runtimeExtensions.flatMap(GradleKotlinDslRuntimeGeneratedSources::getGeneratedSources)); spec.getClasspath().from(extension.getClasspath()); spec.getClasspath().from(runtimeExtensions.flatMap(GradleKotlinDslRuntimeGeneratedSources::getGeneratedClasses)); spec.getIncludes().from(extension.getSourceRoot().file("kotlin/Module.md"));
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed May 28 11:34:42 GMT 2025 - 7.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/StandaloneRestTestPlugin.java
EclipseModel eclipse = project.getExtensions().getByType(EclipseModel.class); eclipse.getClasspath().setSourceSets(Arrays.asList(testSourceSet)); eclipse.getClasspath() .setPlusConfigurations( Arrays.asList(project.getConfigurations().getByName(JavaPlugin.TEST_RUNTIME_CLASSPATH_CONFIGURATION_NAME)) );Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Jul 05 08:34:36 GMT 2021 - 3.4K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/elasticsearch.fips.gradle
// set the class path to help maintain pure black box testing, and here we are adding to that classpath tasks.withType(Test).configureEach { Test test -> test.setClasspath(test.getClasspath().plus(extraFipsJars)) } } pluginManager.withPlugin("elasticsearch.testclusters") { afterEvaluate {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Sep 21 11:03:02 GMT 2021 - 4.8K bytes - Click Count (0)