- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for afterSessionStart (0.09 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
chainedWorkspaceReader.setReaders(workspaceReaders); } private void afterSessionStart(MavenSession session) throws MavenExecutionException { callListeners(session, AbstractMavenLifecycleParticipant::afterSessionStart); } private void afterProjectsRead(MavenSession session) throws MavenExecutionException {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon May 05 16:58:52 GMT 2025 - 28.7K bytes - Click Count (1) -
impl/maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java
* * @param session the Maven session * @throws MavenExecutionException in case of issue */ // TODO This is too early for build extensions, so maybe just remove it? public void afterSessionStart(MavenSession session) throws MavenExecutionException { // do nothing } /** * Invoked after all projects were built. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.9K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java
} catch (IOException e) { throw new RuntimeException(e); } project.getModel().addDependency(dependency); } @Override public void afterSessionStart(MavenSession session) { session.getUserProperties().setProperty("injected", "bar"); } } public static class InjectReactorDependency extends AbstractMavenLifecycleParticipant {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6K bytes - Click Count (0)