Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fess (0.18 sec)

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

         * Returns the project artifacts as immutable list. Elements are the project POM artifact and the artifact
         * produced by this project build, if applicable. Hence, the returned list may have one or two elements
         * (never less than 1, never more than 2), depending on project packaging.
         * <p>
         * The list's first element is ALWAYS the project POM artifact. Presence of second element in the list depends
         * solely on the project packaging.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

                throws ProjectBuildingException {
            return buildFromRepository(artifact, remoteRepositories, localRepository, true);
        }
    
        /**
         * This is used for pom-less execution like running archetype:generate. I am taking out the profile handling and the
         * interpolation of the base directory until we spec this out properly.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolver.java

    import org.apache.maven.artifact.versioning.OverConstrainedVersionException;
    
    /**
     * Resolves conflicting artifacts by always selecting the oldest declaration. Oldest is defined as the
     * declaration whose version is less according to <code>ArtifactVersion.compareTo</code>.
     *
     * @see ArtifactVersion#compareTo
     * @since 3.0
     */
    @Named("oldest")
    @Singleton
    @Deprecated
    public class OldestConflictResolver implements ConflictResolver {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                }
                logger.warn(
                        "For more or less details, use 'maven.plugin.validation' property with one of the values (case insensitive): {}",
                        Arrays.toString(ValidationReportLevel.values()));
                logger.warn("");
            }
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

     *     <li><code>sp</code></li>
     *     </ul>
     *     Unknown qualifiers are considered after known qualifiers, with lexical order (always case insensitive),
     *   </li>
     * <li>a hyphen usually precedes a qualifier, and is always less important than digits/number, for example
     *   {@code 1.0.RC2 < 1.0-RC3 < 1.0.1}; but prefer {@code 1.0.0-RC1} over {@code 1.0.0.RC1}, and more
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 26K bytes
    - Viewed (0)
Back to top