Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getFullGoalName (0.05 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                            "surefire:test",
                            "jar:jar",
                            "install:install"),
                    executionPlan.stream()
                            .map(plan -> plan.getMojoDescriptor().getFullGoalName())
                            .toList());
        }
    
        // We need to take in multiple lifecycles
        @Test
        public void testCalculationOfBuildPlanWithMultipleExecutionsOfModello() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                scope.seed(
                        org.apache.maven.api.plugin.Log.class,
                        new DefaultLog(LoggerFactory.getLogger(
                                mojoExecution.getMojoDescriptor().getFullGoalName())));
                InternalMavenSession sessionV4 = InternalMavenSession.from(session.getSession());
                scope.seed(Project.class, sessionV4.getProject(project));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            org.apache.maven.api.plugin.Log log = new DefaultLog(
                    LoggerFactory.getLogger(mojoExecution.getMojoDescriptor().getFullGoalName()));
            try {
                Injector injector = Injector.create();
                injector.discover(pluginRealm);
                // Add known classes
                // TODO: get those from the existing plexus scopes ?
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 09 16:35:21 UTC 2025
    - 46.4K bytes
    - Viewed (0)
Back to top