Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExecution (0.12 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

            getExecutions().add(execution);
        } // -- void addExecution( Execution )
    
        /**
         * Get configuration to pass to all goals run in this phase.
         *
         * @return Object
         */
        public Object getConfiguration() {
            return this.configuration;
        } // -- Object getConfiguration()
    
        /**
         * Method getExecutions.
         *
         * @return List
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                } else {
                    index.put(key, plugin);
                }
    
                Set<String> executionIds = new HashSet<>();
    
                for (PluginExecution exec : plugin.getExecutions()) {
                    if (!executionIds.add(exec.getId())) {
                        addViolation(
                                problems,
                                Severity.ERROR,
                                Version.V20,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top