- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for localRepositoryPath (0.07 sec)
-
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);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.4K bytes - Viewed (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; } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Dec 12 11:02:17 UTC 2024 - 32.1K bytes - Viewed (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;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 12.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupContext.java
public Path installationSettingsPath; public Path projectSettingsPath; public Path userSettingsPath; public boolean interactive; public Path localRepositoryPath; public Settings effectiveSettings; public PersistedToolchains effectiveToolchains; public final List<AutoCloseable> closeables = new ArrayList<>(); @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 5.7K bytes - Viewed (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();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (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 //
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)