Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getFullGoalName (0.09 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/internal/DefaultPluginValidationManager.java

            } else {
                return "unknown";
            }
        }
    
        private String mojoInfo(MojoDescriptor mojoDescriptor, Class<?> mojoClass) {
            return mojoDescriptor.getFullGoalName() + " (" + mojoClass.getName() + ")";
        }
    
        @SuppressWarnings("unchecked")
        private ConcurrentHashMap<String, PluginValidationIssues> pluginIssues(RepositorySystemSession session) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:32 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        }
    
        /**
         * @return the full goal name
         * @see PluginDescriptor#getGoalPrefix()
         * @see #getGoal()
         */
        public String getFullGoalName() {
            return getPluginDescriptor().getGoalPrefix() + ":" + getGoal();
        }
    
        /** {@inheritDoc} */
        @Override
        public String getComponentType() {
            return MAVEN_PLUGIN;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  4. 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)
  5. 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