Interface PathTranslator

All Known Implementing Classes:
DefaultPathTranslator

@Deprecated(since="4.0.0") public interface PathTranslator
Deprecated.
use org.apache.maven.api.services.ModelBuilder instead
Resolves relative paths against a specific base directory.
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated.
    Resolves the specified path against the given base directory.
  • Method Details

    • alignToBaseDirectory

      String alignToBaseDirectory(String path, File basedir)
      Deprecated.
      Resolves the specified path against the given base directory. The resolved path will be absolute and uses the platform-specific file separator if a base directory is given. Otherwise, the input path will be returned unaltered.
      Parameters:
      path - The path to resolve, may be null.
      basedir - The base directory to resolve relative paths against, may be null.
      Returns:
      The resolved path or null if the input path was null.