Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 171 for errors (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                    + "(" + result.getPomFile() + ") has "
                    + children.size() + " error" + (children.size() == 1 ? "" : "s");
    
            return new ExceptionSummary(null, message, null, children);
        }
    
        private ExceptionSummary handle(ModelProblem problem, String projectId) {
            if (ModelProblem.Severity.ERROR.compareTo(problem.getSeverity()) >= 0) {
                String message = problem.getMessage();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java

         * repositories and their contents.
         *
         * @param session the session to use
         * @param artifactCoordinate t
         * @return the version range resolution result
         * @throws VersionResolverException if an errors occurs
         */
        @Nonnull
        default VersionRangeResolverResult resolve(@Nonnull Session session, @Nonnull ArtifactCoordinate artifactCoordinate)
                throws VersionResolverException {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidationResult.java

            if (messages.size() == 0) {
                return indentation + "There were no validation errors.";
            }
    
            StringBuilder message = new StringBuilder();
    
            //        if ( messages.size() == 1 )
            //        {
            //            message.append( "There was 1 validation error: " );
            //        }
            //        else
            //        {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginLoaderException.java

    import org.apache.maven.plugin.version.PluginVersionNotFoundException;
    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    
    /**
     * Signifies a failure to load a plugin. This is used to abstract the specific errors which may be
     * encountered at lower levels, and provide a dependable interface to the plugin-loading framework.
     *
     *
     */
    public class PluginLoaderException extends Exception {
    
        private String pluginKey;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  5. maven-core/src/main/resources/META-INF/maven/extension.xml

        <!--
          | NOTE: Don't exclude the wagons or any of their dependencies (apart from the wagon API). This would otherwise
          | provoke linkage errors for wagons contributed by build extensions. We also don't need to exclude the wagons
          | from plugins. Plugins that use wagons directly and declare the corresponding dependency will simply use a
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            return mirrorSelector.getMirror(repository, mirrors);
        }
    
        public void injectMirror(List<ArtifactRepository> repositories, List<Mirror> mirrors) {
            if (repositories != null && mirrors != null) {
                for (ArtifactRepository repository : repositories) {
                    Mirror mirror = getMirror(repository, mirrors);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    describeMismatch(Object item, Description mismatchDescription); /** * This method simply acts a friendly reminder not to implement Matcher directly and * instead extend BaseMatcher. It's easy to ignore JavaDoc, but a bit harder to ignore * compile errors . * * @see Matcher for reasons why. * @see BaseMatcher * @deprecated to make */ @Deprecated void _dont_implement_Matcher___instead_extend_BaseMatcher_(); } org/hamcrest/MatcherAssert.java org/hamcrest/MatcherAssert.java /* Copyright (c) 2000-2006...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/shared/run.cmd

      "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" ^
      %LAUNCHER_CLASS% ^
      %MAVEN_ARGS% ^
      %*
    if ERRORLEVEL 1 goto error
    goto end
    
    :error
    set ERROR_CODE=1
    
    :end
    @endlocal & set ERROR_CODE=%ERROR_CODE%
    
    if not "%MAVEN_SKIP_RC%"=="" goto skipRcPost
    @REM check for post script, once with legacy .bat ending and once with .cmd ending
    Batch File
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Mar 05 22:52:54 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    isWarnEnabled(); public abstract void warn(CharSequence); public abstract void warn(CharSequence, Throwable); public abstract void warn(Throwable); public abstract boolean isErrorEnabled(); public abstract void error(CharSequence); public abstract void error(CharSequence, Throwable); public abstract void error(Throwable); } org/apache/maven/plugin/logging/SystemStreamLog.class package org.apache.maven.plugin.logging; public synchronized class SystemStreamLog implements Log { public void SystemStreamLog(); public...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivateTest.java

            // execute
            ToolchainPrivate[] toolchains = toolchainManager.getToolchainsForType("basic", session);
    
            // verify
            verify(logger, never()).error(anyString());
            assertEquals(1, toolchains.length);
        }
    
        @Test
        void testToolchainsForUnknownType() throws Exception {
            // prepare
            MavenSession session = mock(MavenSession.class);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 5.7K bytes
    - Viewed (0)
Back to top