Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getInceptionYear (0.06 sec)

  1. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            // Value inherited from p3
            // ----------------------------------------------------------------------
    
            assertEquals("2000", project4.getInceptionYear());
    
            // ----------------------------------------------------------------------
            // Value taken from p2
            // ----------------------------------------------------------------------
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 04 10:35:11 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                        model.setChildProjectUrlInheritAppendPath(intChildProjectUrlInheritAppendPath);
                    }
                    // InceptionYear
                    String orgInceptionYear = model.getInceptionYear();
                    String intInceptionYear = interpolate(orgInceptionYear);
                    if (orgInceptionYear != intInceptionYear) {
                        model.setInceptionYear(intInceptionYear);
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  3. 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)
  4. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public void setInceptionYear(String inceptionYear) {
            getModel().setInceptionYear(inceptionYear);
        }
    
        public String getInceptionYear() {
            return getModel().getInceptionYear();
        }
    
        public void setUrl(String url) {
            getModel().setUrl(url);
        }
    
        public String getUrl() {
            return getModel().getUrl();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
Back to top