Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 80 for Interpolation (0.06 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PathTranslatingPostProcessor.java

     * under the License.
     */
    package org.apache.maven.model.interpolation;
    
    import java.io.File;
    import java.util.Collection;
    import java.util.List;
    
    import org.apache.maven.model.path.PathTranslator;
    import org.codehaus.plexus.interpolation.InterpolationPostProcessor;
    import org.codehaus.plexus.interpolation.util.ValueSourceUtils;
    
    /**
     *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  2. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilder.java

    import org.apache.maven.settings.validation.SettingsValidator;
    import org.codehaus.plexus.interpolation.EnvarBasedValueSource;
    import org.codehaus.plexus.interpolation.InterpolationException;
    import org.codehaus.plexus.interpolation.InterpolationPostProcessor;
    import org.codehaus.plexus.interpolation.PropertiesBasedValueSource;
    import org.codehaus.plexus.interpolation.RegexBasedInterpolator;
    
    /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

    import org.apache.maven.model.validation.ModelValidator;
    import org.codehaus.plexus.interpolation.InterpolationException;
    import org.codehaus.plexus.interpolation.MapBasedValueSource;
    import org.codehaus.plexus.interpolation.RegexBasedInterpolator;
    import org.codehaus.plexus.interpolation.StringSearchInterpolator;
    import org.codehaus.plexus.util.StringUtils;
    import org.eclipse.sisu.Nullable;
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 23:08:08 GMT 2025
    - 55.3K bytes
    - Click Count (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java

         * @return the user settings source or {@code null} if none
         */
        @Nonnull
        Optional<Source> getUserSettingsSource();
    
        /**
         * The optional interpolation source used for interpolation.
         *
         * @return the interpolation source for interpolation
         */
        @Nonnull
        Optional<UnaryOperator<String>> getInterpolationSource();
    
        @Nonnull
        static SettingsBuilderRequest build(
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Feb 07 00:45:02 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/path/ProfileActivationFilePathInterpolator.java

    import org.apache.maven.model.profile.ProfileActivationContext;
    import org.apache.maven.model.root.RootLocator;
    import org.codehaus.plexus.interpolation.AbstractValueSource;
    import org.codehaus.plexus.interpolation.InterpolationException;
    import org.codehaus.plexus.interpolation.MapBasedValueSource;
    import org.codehaus.plexus.interpolation.RegexBasedInterpolator;
    
    /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  6. compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java

    import org.apache.maven.toolchain.model.TrackableBase;
    import org.codehaus.plexus.interpolation.EnvarBasedValueSource;
    import org.codehaus.plexus.interpolation.InterpolationException;
    import org.codehaus.plexus.interpolation.InterpolationPostProcessor;
    import org.codehaus.plexus.interpolation.RegexBasedInterpolator;
    
    /**
     *
     * @since 3.3.0
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Mar 05 09:37:42 GMT 2025
    - 7.3K bytes
    - Click Count (0)
  7. impl/maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml

      <groupId>org.apache.maven.its.mng3760</groupId>
      <artifactId>test1</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-3760</name>
      <description>
        Test interpolation of ${project.baseUri}
      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <prop1>${project.baseUri}</prop1>
      </properties>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.2K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import org.apache.maven.model.interpolation.reflection.ReflectionValueExtractor;
    import org.codehaus.plexus.interpolation.AbstractValueSource;
    
    /**
     * Wraps an object, providing reflective access to the object graph of which the
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  9. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/MavenBuildTimestampTest.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.interpolation;
    
    import java.util.Date;
    import java.util.Properties;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    @Deprecated
    class MavenBuildTimestampTest {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

    import org.apache.maven.model.inheritance.InheritanceAssembler;
    import org.apache.maven.model.interpolation.DefaultModelVersionProcessor;
    import org.apache.maven.model.interpolation.ModelInterpolator;
    import org.apache.maven.model.interpolation.ModelVersionProcessor;
    import org.apache.maven.model.interpolation.StringVisitorModelInterpolator;
    import org.apache.maven.model.io.DefaultModelReader;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 10.2K bytes
    - Click Count (0)
Back to Top