- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for getInceptionYear (0.06 seconds)
-
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java
// Value inherited from p3 // ---------------------------------------------------------------------- assertEquals("2000", p4.getInceptionYear()); // ---------------------------------------------------------------------- // Value taken from p2 // ----------------------------------------------------------------------Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.5K bytes - Click Count (0) -
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 // ----------------------------------------------------------------------Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jun 04 10:35:11 GMT 2025 - 6.3K bytes - Click Count (0) -
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); }
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) -
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(); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Aug 29 12:47:20 GMT 2025 - 67K bytes - Click Count (0) -
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)