- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for updateScopeCurrentPom (0.07 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java
@Override public void omitForNearer(Artifact omitted, Artifact kept) {} @Override public void omitForCycle(Artifact omitted) {} @Override public void updateScopeCurrentPom(Artifact artifact, String scope) {} @Override public void updateScope(Artifact artifact, String scope) {} @Override public void manageArtifact(Artifact artifact, Artifact replacement) {}
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java
* * @param artifact current node artifact, the one in the first level pom * @param ignoredScope artifactScope that was ignored because artifact was in first level pom */ void updateScopeCurrentPom(Artifact artifact, String ignoredScope); void selectVersionFromRange(Artifact artifact); void restrictRange(Artifact artifact, Artifact replacement, VersionRange newRange);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 2.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
} } @Override public void omitForCycle(Artifact omitted) { logger.debug(indent + omitted + " (removed - causes a cycle in the graph)"); } @Override public void updateScopeCurrentPom(Artifact artifact, String ignoredScope) { logger.debug(indent + artifact + " (not setting artifactScope to: " + ignoredScope + "; local artifactScope " + artifact.getScope() + " wins)");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java
listener.updateScope(node.getArtifact(), replacement.getScope()); break; case ResolutionListener.UPDATE_SCOPE_CURRENT_POM: listener.updateScopeCurrentPom(node.getArtifact(), replacement.getScope()); break; case ResolutionListener.MANAGE_ARTIFACT_VERSION: if (listener instanceof ResolutionListenerForDepMgmt asImpl) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 36.5K bytes - Viewed (0)