Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for defaultGoal (0.62 seconds)

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

                    for (Plugin plugin : build.getPlugins()) {
                        visit(plugin);
                    }
                    // PluginManagement
                    visit(build.getPluginManagement());
                    // DefaultGoal
                    org = build.getDefaultGoal();
                    val = interpolate(org);
                    if (org != val) {
                        build.setDefaultGoal(val);
                    }
                    // Resources
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            if (src != null) {
                if (sourceDominant || target.getDefaultGoal() == null) {
                    target.setDefaultGoal(src);
                    target.setLocation("defaultGoal", source.getLocation("defaultGoal"));
                }
            }
        }
    
        protected void mergeBuildBase_Directory(
                BuildBase target, BuildBase source, boolean sourceDominant, Map<Object, Object> context) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

          <version>3.0.0+</version>
          <superClass>PluginConfiguration</superClass>
          <description>Build configuration in a profile.</description>
          <fields>
            <field>
              <name>defaultGoal</name>
              <version>3.0.0+</version>
              <description>The default goal to execute when none is specified for
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 17 09:48:21 GMT 2026
    - 133.5K bytes
    - Click Count (0)
Back to Top