Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getInceptionYear (0.05 sec)

  1. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

        protected void mergeModel_InceptionYear(
                Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getInceptionYear();
            if (src != null) {
                if (sourceDominant || target.getInceptionYear() == null) {
                    target.setInceptionYear(src);
                    target.setLocation("inceptionYear", source.getLocation("inceptionYear"));
                }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
Back to top