- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for findTool (0.08 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
@Override public String getType() { return delegate.getType(); } @Override public String findTool(String toolName) { return delegate.findTool(toolName); } @Override public org.apache.maven.api.toolchain.ToolchainModel getModel() { return delegate.getModel().getDelegate(); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 31 10:58:52 GMT 2025 - 11K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CliUtils.java
case ERROR -> Logger.LEVEL_ERROR; }; } @Nullable public static Path findRoot(Path topDirectory) { requireNonNull(topDirectory, "topDirectory"); Path rootDirectory = ServiceLoader.load(RootLocator.class).iterator().next().findRoot(topDirectory); if (rootDirectory != null) { return getCanonicalPath(rootDirectory); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 13 18:30:29 GMT 2025 - 5K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
} @Test public void findRootProjectWithAttribute() { Path test = Paths.get("src/test/projects/root-attribute"); assertEquals(test, new DefaultRootLocator().findRoot(test.resolve("child"))); } @Test public void testPropertiesInterpolation() throws Exception { FileSystem fs = Jimfs.newFileSystem(Configuration.windows());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 30.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
.build(); if (pomFile != null) { project.setRootDirectory(rootLocator.findRoot(pomFile.getParent())); } ModelBuilderResult result; try { result = modelBuilderSession.build(request);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 51.8K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
} } return getCanonicalPath(topDirectory); } @Nullable protected Path getRootDirectory(LocalContext context) { return CliUtils.findRoot(context.topDirectory); } protected Map<String, String> populateSystemProperties(LocalContext context) { Properties systemProperties = new Properties();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:39:11 GMT 2025 - 25.5K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0)