- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for registry_ (0.05 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
this.customLifecycles = lifecycles; this.lookup = null; this.registry = null; } @Inject public DefaultLifecycles(LifecycleRegistry registry, Lookup lookup) { this.lookup = lookup; this.registry = registry; } /** * Get lifecycle based on phase * * @param phase * @return */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java
} /** * This method produces "surrogate" type registry that is static: it aims users that want to use * Maven-Resolver without involving Maven Core and related things. * <p> * This type registry is NOT used by Maven Core: Maven replaces it during Session creation with a type registry * that supports extending it (i.e. via Maven Extensions). * <p>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java
this.defaultPhases = defaultPhases; } public Lifecycle( org.apache.maven.api.services.LifecycleRegistry registry, org.apache.maven.api.Lifecycle lifecycle) { this.lifecycle = lifecycle; this.id = lifecycle.id(); this.phases = registry.computePhases(lifecycle).stream() .flatMap(p -> Stream.of(BEFORE + p, p, AFTER + p)) .toList();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0)