Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PathTranslatingPostProcessor (3.81 sec)

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

    /**
     *
     */
    @Deprecated
    public class PathTranslatingPostProcessor implements InterpolationPostProcessor {
    
        private final List<String> unprefixedPathKeys;
        private final File projectDir;
        private final PathTranslator pathTranslator;
        private final List<String> expressionPrefixes;
    
        public PathTranslatingPostProcessor(
                List<String> expressionPrefixes,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PathTranslatingPostProcessor.java

     */
    @Deprecated(since = "4.0.0")
    class PathTranslatingPostProcessor implements InterpolationPostProcessor {
    
        private final Collection<String> unprefixedPathKeys;
        private final File projectDir;
        private final PathTranslator pathTranslator;
        private final List<String> expressionPrefixes;
    
        PathTranslatingPostProcessor(
                List<String> expressionPrefixes,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

            List<InterpolationPostProcessor> processors = new ArrayList<>(2);
            if (projectDir != null) {
                processors.add(new PathTranslatingPostProcessor(
                        PROJECT_PREFIXES, TRANSLATED_PATH_EXPRESSIONS,
                        projectDir, pathTranslator));
            }
            processors.add(new UrlNormalizingPostProcessor(urlNormalizer));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

        protected List<InterpolationPostProcessor> createPostProcessors(
                final Model model, final File projectDir, final ProjectBuilderConfiguration config) {
            return Collections.singletonList(new PathTranslatingPostProcessor(
                    PROJECT_PREFIXES, TRANSLATED_PATH_EXPRESSIONS, projectDir, pathTranslator));
        }
    
        @SuppressWarnings("unchecked")
        protected String interpolateInternal(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top