- Sort Score
- Num 10 results
- Language All
Results 11 - 14 of 14 for getTopDirectory (0.4 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java
if (project != null) { Path projectFile = project.getBasedir(); basedir = projectFile.toAbsolutePath(); } if (basedir == null) { basedir = session.getTopDirectory(); } if (basedir == null) { basedir = Paths.get(System.getProperty("user.dir")); } this.basedir = basedir; } @OverrideCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 9.8K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java
if (currentPom != null) { MavenSession session = event.getSession(); Path current = currentPom.toPath().toAbsolutePath().normalize(); Path topDirectory = session.getTopDirectory(); if (topDirectory != null && current.startsWith(topDirectory)) { current = topDirectory.relativize(current); } logger.info(" from " + current);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Dec 13 15:40:45 GMT 2024 - 17.5K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
if (currentPom != null) { MavenSession session = event.getSession(); Path current = currentPom.toPath().toAbsolutePath().normalize(); Path topDirectory = session.getTopDirectory(); if (topDirectory != null && current.startsWith(topDirectory)) { current = topDirectory.relativize(current); } logger.info(" from " + current);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Nov 08 08:49:11 GMT 2024 - 17.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
@Override public MavenExecutionRequest setRootDirectory(Path rootDirectory) { this.rootDirectory = rootDirectory; return this; } @Override public Path getTopDirectory() { return topDirectory; } @Override public MavenExecutionRequest setTopDirectory(Path topDirectory) { this.topDirectory = topDirectory; return this; }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 32.1K bytes - Click Count (0)