- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for omitForCycle (0.19 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java
public void endProcessChildren(Artifact artifact) {} public void includeArtifact(Artifact artifact) {} public void omitForNearer(Artifact omitted, Artifact kept) {} public void omitForCycle(Artifact omitted) {} public void updateScopeCurrentPom(Artifact artifact, String scope) {} public void updateScope(Artifact artifact, String scope) {}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
if (!Objects.equals(omittedVersion, keptVersion)) { logger.debug(indent + omitted + " (removed - nearer found: " + keptVersion + ")"); } } public void omitForCycle(Artifact omitted) { logger.debug(indent + omitted + " (removed - causes a cycle in the graph)"); } public void updateScopeCurrentPom(Artifact artifact, String ignoredScope) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java
// TODO Remove ResolutionListenerDM interface // void manageArtifactVersion( Artifact artifact, Artifact replacement ); // void manageArtifactScope( Artifact artifact, Artifact replacement ); void omitForCycle(Artifact artifact); /** * This event means that the artifactScope has NOT been updated to a farther node artifactScope because current * node is in the first level pom *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0)