Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTopDirectory (0.06 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java

         * @see #getRootDirectory()
         */
        @Nonnull
        Path getTopDirectory();
    
        /**
         * Gets the root directory of the session, which is the root directory for the top directory project.
         *
         * @return the root directory, never {@code null}
         * @throws IllegalStateException if the root directory could not be found
         * @see #getTopDirectory()
         * @see Project#getRootDirectory()
         * @see Project#isRootProject()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                parserRequest.logger().error("Error determining user home directory", e);
            }
    
            // top/root
            try {
                context.topDirectory = getTopDirectory(context);
            } catch (Exception e) {
                context.parsingFailed = true;
                context.topDirectory = context.cwd;
                parserRequest.logger().error("Error determining top directory", e);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
Back to top