Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getInceptionYear (0.07 seconds)

  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"));
                }
    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