Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for Round (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

     * into itself leading to a stack overflow.
     *
     * A side effect of using @Typed is that it translates to explicit bindings in the container.
     * So instead of binding the component under a 'wildcard' key it is now bound with an explicit
     * key. Since this is a default component this will be a plain binding of ModelProcessor to
     * this implementation type, ie. no hint/name.
     *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         *   <li><b>Package hierarchy:</b> if a {@code module-info.class} file is found at the root,
         *       then builds a singleton map with the module name declared in that descriptor.</li>
         *   <li><b>Module hierarchy:</b> if {@code module-info.class} files are found in sub-directories,
         *       at a deep intentionally restricted to one level, then builds a map of module names found
         *       in the descriptor of each sub-directory.</li>
         * </ul>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                                BuilderProblem.Severity.WARNING,
                                "servers.server.id",
                                null,
                                "must be unique but found duplicate server with id " + server.getId());
                    }
                }
            }
    
            List<Mirror> mirrors = settings.getMirrors();
    
            if (mirrors != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleNotFoundException.java

            this.lifecycleId = (lifecycleId != null) ? lifecycleId : "";
        }
    
        /**
         * Gets the identifier of the lifecycle that was not found.
         *
         * @return The identifier of the lifecycle that was not found, never {@code null}.
         */
        public String getLifecycleId() {
            return lifecycleId;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  5. apache-maven/README.txt

      build, reporting and documentation from a central piece of information.
    
      Documentation
      -------------
    
      The most up-to-date documentation can be found at https://maven.apache.org/.
    
      Release Notes
      -------------
    
      The full list of changes can be found at https://maven.apache.org/docs/history.html.
    
      System Requirements
      -------------------
    
      JDK:
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstaller.java

        /**
         * @param session the repository session
         * @param artifact the {@link Artifact} to install
         * @throws ArtifactInstallerException In case of an error which can be the a given artifact cannot be found or the
         *             installation has failed.
         * @throws IllegalArgumentException in case of parameter {@code session} is {@code null} or
         *          {@code artifact} is {@code null}.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Nov 17 15:52:15 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  7. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

         * Locates the pom in the given directory.
         *
         * @param dir the directory to locate the pom for, never {@code null}
         * @return a {@code Source} pointing to the located pom or an empty {@code Optional} if none was found by this parser
         */
        @Nonnull
        Optional<Source> locate(@Nonnull Path dir);
    
        /**
         * Parse the model obtained previously by a previous call to {@link #locate(Path)}.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    All Possible Errors
    - invalid lifecycle phase (maybe same as bad CLI param, though you were talking about embedder too)
    - <module> specified is not found
    - malformed settings
    - malformed POM
    - local repository not writable
    - remote repositories not available
    - artifact metadata missing
    - extension metadata missing
    - extension artifact missing
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/MissingModuleException.java

        private File moduleFile;
        private final String moduleName;
    
        public MissingModuleException(String moduleName, File moduleFile, File pomFile) {
            super("The module: " + moduleName + " cannot be found in file: " + moduleFile, pomFile);
            this.moduleName = moduleName;
            this.moduleFile = moduleFile;
        }
    
        public File getModuleFile() {
            return moduleFile;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverNotFoundException.java

     * under the License.
     */
    package org.apache.maven.repository.legacy.resolver.conflict;
    
    /**
     * Indicates that a specified conflict resolver implementation could not be found.
     *
     * @since 3.0
     */
    @Deprecated
    public class ConflictResolverNotFoundException extends Exception {
        // constants --------------------------------------------------------------
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.5K bytes
    - Viewed (0)
Back to top