Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pluginPrefix (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

            } else if (numTokens == 3) {
                // groupId:artifactId:goal or pluginPrefix:version:goal (since Maven 3.9.0)
    
                String firstToken = tok[0];
                // groupId or pluginPrefix? heuristics: groupId contains dot (.) but not pluginPrefix
                if (firstToken.contains(".")) {
                    // We have everything that we need except the version
                    //
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Mar 25 09:45:07 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleTaskSegmentCalculator.java

                    LOGGER.warn("Illegal call to phase '{}'. The main phase '{}' will be used instead.", prevTask, task);
                }
                if (isGoalSpecification(task)) {
                    // "pluginPrefix[:version]:goal" or "groupId:artifactId[:version]:goal"
    
                    lifecyclePluginResolver.resolveMissingPluginVersions(session.getTopLevelProject(), session);
    
                    MojoDescriptor mojoDescriptor =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 23:07:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/ConcurrentLifecycleStarter.java

                    logger.warn("Illegal call to phase '{}'. The main phase '{}' will be used instead.", prevTask, task);
                }
                if (isGoalSpecification(task)) {
                    // "pluginPrefix[:version]:goal" or "groupId:artifactId[:version]:goal"
    
                    lifecyclePluginResolver.resolveMissingPluginVersions(session.getTopLevelProject(), session);
    
                    MojoDescriptor mojoDescriptor =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top