Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for robots (0.29 sec)

  1. maven-core/src/main/java/org/apache/maven/ReactorReader.java

            if (projectLocalRepository == null) {
                Path root = session.getRequest().getMultiModuleProjectDirectory().toPath();
                List<MavenProject> projects = session.getProjects();
                if (projects != null) {
                    projectLocalRepository = projects.stream()
                            .filter(project -> Objects.equals(root.toFile(), project.getBasedir()))
                            .findFirst()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        Path getTopDirectory();
    
        /**
         * Gets the root directory of the session, which is the root directory for the top directory project.
         *
         * @throws IllegalStateException if the root directory could not be found
         * @see #getTopDirectory()
         * @see Project#getRootDirectory()
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
Back to top