- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 34 for rootDirectory (0.71 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
// This is used to compute {@code session.rootDirectory} but all {@code project.rootDirectory} // properties will be computed through the RootLocator found in the container. RootLocator rootLocator = ServiceLoader.load(RootLocator.class).iterator().next(); cliRequest.rootDirectory = rootLocator.findRoot(topDirectory); //Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0) -
apache-maven/src/assembly/maven/conf/maven-system.properties
# system properties at the very beginning of Maven's boot process. # maven.installation.conf = ${maven.home}/conf maven.user.conf = ${user.home}/.m2 maven.project.conf = ${session.rootDirectory}/.mvn # Comma-separated list of files to include. # Each item may be enclosed in quotes to gracefully include spaces. Items are trimmed before being loaded.
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 2.6K bytes - Click Count (0) -
build-logic-settings/build-environment/src/main/kotlin/gradlebuild.build-environment.settings.gradle.kts
* limitations under the License. */ import gradlebuild.basics.BuildEnvironmentExtension import gradlebuild.basics.BuildEnvironmentService with(layout.rootDirectory) { gradle.lifecycle.beforeProject { val service = gradle.sharedServices.registerIfAbsent("buildEnvironmentService", BuildEnvironmentService::class) { check(project.path == ":") {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 25 08:51:12 GMT 2026 - 1.8K bytes - Click Count (0) -
impl/maven-cli/src/test/resources/mavenHome/conf/maven-system.properties
# user properties at the very beginning of Maven's boot process. # maven.property = yes it is maven.installation.conf = ${maven.home}/conf maven.user.conf = ${user.home}/.m2 maven.project.conf = ${session.rootDirectory}/.mvn # Comma-separated list of files to include. # Each item may be enclosed in quotes to gracefully include spaces. Items are trimmed before being loaded.
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 2.8K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
request.setTopDirectory(context.invokerRequest.topDirectory()); if (context.invokerRequest.rootDirectory().isPresent()) { request.setMultiModuleProjectDirectory( context.invokerRequest.rootDirectory().get().toFile()); request.setRootDirectory(context.invokerRequest.rootDirectory().get()); } request.addPluginGroup("org.apache.maven.plugins");Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Oct 28 13:01:07 GMT 2025 - 43.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/ProfileActivationFilePathInterpolator.java
return null; } interpolator.addValueSource(new AbstractValueSource(false) { @Override public Object getValue(String expression) { if ("project.rootDirectory".equals(expression)) { Path base = basedir != null ? basedir.toPath() : null; Path root = rootLocator.findMandatoryRoot(base); return root.toFile().getAbsolutePath();Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.9K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
if (cliRequest.getRootDirectory() != null) { props = new Properties(); props.putAll(cliRequest.getUserProperties()); props.put("session.rootDirectory", cliRequest.getRootDirectory().toString()); } settingsRequest.setUserProperties(props); if (request.getEventSpyDispatcher() != null) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 19 18:49:57 GMT 2025 - 12K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 14.3K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
public static final String MAVEN_USER_CONF = "maven.user.conf"; /** * Maven project configuration directory. * * @since 4.0.0 */ @Config(defaultValue = "${session.rootDirectory}/.mvn") public static final String MAVEN_PROJECT_CONF = "maven.project.conf"; /** * Maven local repository. * * @since 3.0.0 */
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 28.7K bytes - Click Count (0) -
api/maven-api-model/src/main/mdo/maven.mdo
<p>The following properties are supported in expressions:</p> <ul> <li>`project.basedir`: The project directory</li> <li>`project.rootDirectory`: The root directory of the project</li> <li>`project.artifactId`: The artifactId of the project</li> <li>`project.packaging`: The packaging of the project</li> <li>user properties</li>Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 17 09:48:21 GMT 2026 - 133.5K bytes - Click Count (0)