- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for localRepositoryPath (0.32 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java
throws MavenExecutionRequestPopulationException { String localRepositoryPath = null; if (request.getLocalRepositoryPath() != null) { localRepositoryPath = request.getLocalRepositoryPath().getAbsolutePath(); } if (localRepositoryPath == null || localRepositoryPath.isEmpty()) { String path = request.getUserProperties().getProperty(Constants.MAVEN_USER_CONF);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 8.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java
} @Override public MavenExecutionRequest setLocalRepositoryPath(File localRepository) { localRepositoryPath = localRepository; return this; } @Override public MavenExecutionRequest setLocalRepositoryPath(String localRepository) { localRepositoryPath = (localRepository != null) ? new File(localRepository) : null; return this; } @OverrideCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 32.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
context.effectiveSettings = settingsResult.getEffectiveSettings(); context.interactive = mayDisableInteractiveMode(context, context.effectiveSettings.isInteractiveMode()); context.localRepositoryPath = localRepositoryPath(context); if (emitSettingsWarnings && settingsResult.getProblems().hasWarningProblems()) { int totalProblems = settingsResult.getProblems().totalProblemsReported();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-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
performProfileActivation(commandLine, request.getProfileActivation()); final String localRepositoryPath = determineLocalRepositoryPath(request); if (localRepositoryPath != null) { request.setLocalRepositoryPath(localRepositoryPath); } // // Builder, concurrency and parallelism //
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) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java
result.userSettingsPath = shellContext.userSettingsPath; result.interactive = shellContext.interactive; result.localRepositoryPath = shellContext.localRepositoryPath; result.effectiveSettings = shellContext.effectiveSettings; result.containerCapsule = shellContext.containerCapsule;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Jun 07 06:22:47 GMT 2025 - 12.3K bytes - Click Count (0)