- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 18 for Interpolation (0.31 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java
import org.apache.maven.project.path.PathTranslator; import org.codehaus.plexus.interpolation.InterpolationPostProcessor; import org.codehaus.plexus.interpolation.Interpolator; import org.codehaus.plexus.interpolation.StringSearchInterpolator; import org.codehaus.plexus.interpolation.ValueSource; import org.codehaus.plexus.logging.Logger; /** * StringSearchModelInterpolator */ @Deprecated
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 14.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
} /*MNG-3900*/ @Test void testProfilePropertiesInterpolation() throws Exception { PomTestWrapper pom = buildPom("profile-properties-interpolation", "interpolation-profile"); assertEquals("PASSED", pom.getValue("properties[1]/test")); assertEquals("PASSED", pom.getValue("properties[1]/property")); } /*MNG-7750*/Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 94.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java
* * @return the file model, never {@code null}. */ @Nonnull Model getFileModel(); /** * Gets the file model + build pom transformation, without inheritance nor interpolation. * * @return The raw model, never {@code null}. */ @Nonnull Model getRawModel(); /** * Gets the effective model of the parent POM. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 4.2K bytes - Click Count (0) -
compat/maven-model-builder/pom.xml
</parent> <artifactId>maven-model-builder</artifactId> <name>Maven Model Builder (deprecated)</name> <description>The effective model builder, with inheritance, profile activation, interpolation, ...</description> <properties> <!-- in: DefaultModelValidator, DefaultModelBuilder --> <checkstyle.violation.ignore>FileLength</checkstyle.violation.ignore> </properties> <dependencies>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 12.3K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/interpolation/StringSearchModelInterpolatorTest.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.project.interpolation; import java.util.Map; import org.apache.maven.api.model.InputLocation; import org.apache.maven.api.model.InputSource; import org.apache.maven.api.model.Model;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 1.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/InterpolatorException.java
* under the License. */ package org.apache.maven.api.services; import org.apache.maven.api.annotations.Experimental; /** * Exception thrown by {@link Interpolator} implementations when an error occurs during interpolation. * This can include syntax errors in variable placeholders or recursive variable references. * * @since 4.0.0 */ @Experimental public class InterpolatorException extends MavenException { /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Sep 25 21:57:56 GMT 2025 - 2.6K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/settings/PomConstructionWithSettingsTest.java
} /** * MNG-4107 */ @Test void testPomAndSettingsInterpolation() throws Exception { PomTestWrapper pom = buildPom("test-pom-and-settings-interpolation"); assertEquals("applied", pom.getValue("properties/settingsProfile")); assertEquals("applied", pom.getValue("properties/pomProfile")); assertEquals("settings", pom.getValue("properties/pomVsSettings"));Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 5.5K bytes - Click Count (0) -
compat/maven-compat/pom.xml
<groupId>org.codehaus.plexus</groupId> <artifactId>plexus-interactivity-api</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-interpolation</artifactId> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-api</artifactId> </dependency> <dependency>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 8.1K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java
void testNoAppendUrls3() throws Exception { testInheritance("no-append-urls3"); } /** * Tricky case: flat directory structure, but child directory != artifactId. * Model interpolation does not give same result when calculated from build or from repo... * This is why MNG-5000 fix in code is marked as bad practice (uses file names) * @throws IOException Model read problem */ @Test
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 8.2K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/PluginUpgradeCliTest.java
void testInterpolationWithPluginsOption() throws ParseException { String[] args = {"apply", "--plugins"}; CommonsCliUpgradeOptions options = CommonsCliUpgradeOptions.parse(args); // Test that interpolation works (even though there's nothing to interpolate here) UpgradeOptions interpolated = (CommonsCliUpgradeOptions) options.interpolate(s -> s);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:48:39 GMT 2025 - 9.9K bytes - Click Count (0)