Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Jones (0.1 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

            // Those two public constants are initialized here, as they need all the private constants
            // above to be initialized first, but the code style imposes the public constants to be
            // defined above the private ones...
            OS_FAMILY = getOsFamily();
            IS_WINDOWS = isFamily(FAMILY_WINDOWS);
        }
    
        private Os() {}
    
        /**
         * Determines if the OS on which Maven is executing matches the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - asking to use a plugin for which you do not have a version defined - tools to easily select versions
    - goal not found in a plugin (probably could list the ones that are)
    
     */
    
    // PluginNotFoundException, PluginResolutionException, PluginDescriptorParsingException,
    // CycleDetectedInPluginGraphException;
    
    /**
     * Transform an exception into useful end-user message.
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

            // Those two public constants are initialized here, as they need all the private constants
            // above to be initialized first, but the code style imposes the public constants to be
            // defined above the private ones...
            OS_FAMILY = getOsFamily();
            IS_WINDOWS = isFamily(FAMILY_WINDOWS);
        }
    
        private Os() {}
    
        /**
         * Determines if the OS on which Maven is executing matches the
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Shortcut for {@code getService(DependencyResolver.class).collect(...)}
         *
         * @param artifact artifact for which to get the dependencies, including transitive ones
         * @return root node of the dependency graph for the given artifact
         *
         * @see org.apache.maven.api.services.DependencyResolver#collect(Session, Artifact)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         * filter is applied (like in Maven 3).
         * <p>
         * Supported filters:
         * <ul>
         *     <li>"h" or "h(num)" - highest version or top list of highest ones filter</li>
         *     <li>"l" or "l(num)" - lowest version or bottom list of lowest ones filter</li>
         *     <li>"s" - contextual snapshot filter</li>
         *     <li>"e(G:A:V)" - predicate filter (leaves out G:A:V from range, if hit, V can be range)</li>
         * </ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                        "The plugin " + pluginDescriptor.getId() + " has unmet prerequisites: " + messages,
                        prerequisiteExceptions.get(0));
                // the first exception is added as cause, all other ones as suppressed exceptions
                prerequisiteExceptions.stream().skip(1).forEach(pie::addSuppressed);
                throw pie;
            }
        }
    
        @Override
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top