Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ModelInterpolationException (0.16 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java

                throws ModelInterpolationException {
            interpolateObject(model, model, projectDir, config, debugEnabled);
    
            return model;
        }
    
        protected void interpolateObject(
                Object obj, Model model, File projectDir, ProjectBuilderConfiguration config, boolean debugEnabled)
                throws ModelInterpolationException {
            try {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

                throws ModelInterpolationException {
            StringWriter sWriter = new StringWriter(1024);
    
            MavenStaxWriter writer = new MavenStaxWriter();
            try {
                writer.write(sWriter, model.getDelegate());
            } catch (IOException | XMLStreamException e) {
                throw new ModelInterpolationException("Cannot serialize project model for interpolation.", e);
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  3. 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)
Back to top