- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ModelInterpolationException (0.2 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolationException.java
/** */ @SuppressWarnings("serial") @Deprecated public class ModelInterpolationException extends Exception { private String expression; private String originalMessage; public ModelInterpolationException(String message) { super(message); } public ModelInterpolationException(String message, Throwable cause) { super(message, cause); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolator.java
@Deprecated Model interpolate(Model project, Map<String, ?> context) throws ModelInterpolationException; /** * @deprecated Use {@link ModelInterpolator#interpolate(Model, File, ProjectBuilderConfiguration, boolean)} instead. */ @Deprecated Model interpolate(Model model, Map<String, ?> context, boolean strict) throws ModelInterpolationException;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/interpolation/StringSearchModelInterpolatorTest.java
import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException; import org.junit.jupiter.api.Test; class StringSearchModelInterpolatorTest { @Test void interpolate() throws ModelInterpolationException, InitializationException { Model model = Model.newBuilder() .groupId("group") .location("groupId", InputLocation.of(InputSource.of("model", null))) .build();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 1.6K bytes - Viewed (0)