- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for strictArtifactDescriptorPolicy (0.15 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/LayeredMavenOptions.java
return returnFirstPresentOrEmpty(MavenOptions::cacheArtifactNotFound); } @Override public Optional<Boolean> strictArtifactDescriptorPolicy() { return returnFirstPresentOrEmpty(MavenOptions::strictArtifactDescriptorPolicy); } @Override public Optional<Boolean> ignoreTransitiveRepositories() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 5.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
request.setCacheNotFound(context.options().cacheArtifactNotFound().orElse(true)); request.setCacheTransferError(false); if (context.options().strictArtifactDescriptorPolicy().orElse(false)) { request.setIgnoreMissingArtifactDescriptor(false); request.setIgnoreInvalidArtifactDescriptor(false); } else {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
request.setCacheTransferError(false); boolean strictArtifactDescriptorPolicy = commandLine.hasOption(CLIManager.STRICT_ARTIFACT_DESCRIPTOR_POLICY) && Boolean.parseBoolean(commandLine.getOptionValue(CLIManager.STRICT_ARTIFACT_DESCRIPTOR_POLICY)); if (strictArtifactDescriptorPolicy) { request.setIgnoreMissingArtifactDescriptor(false);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)