Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getDefaultGoal (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                        visit(plugin);
                    }
                    // PluginManagement
                    visit(build.getPluginManagement());
                    // DefaultGoal
                    org = build.getDefaultGoal();
                    val = interpolate(org);
                    if (org != val) {
                        build.setDefaultGoal(val);
                    }
                    // Resources
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return executionRoot;
        }
    
        public void setExecutionRoot(boolean executionRoot) {
            this.executionRoot = executionRoot;
        }
    
        public String getDefaultGoal() {
            return getBuild() != null ? getBuild().getDefaultGoal() : null;
        }
    
        public Plugin getPlugin(String pluginKey) {
            org.apache.maven.api.model.Plugin plugin =
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
  3. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

        protected void mergeBuildBase_DefaultGoal(
                BuildBase target, BuildBase source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getDefaultGoal();
            if (src != null) {
                if (sourceDominant || target.getDefaultGoal() == null) {
                    target.setDefaultGoal(src);
                    target.setLocation("defaultGoal", source.getLocation("defaultGoal"));
                }
            }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
Back to Top