Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for li (0.15 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         * Some spec examples are:
         * <ul>
         * <li><code>1.0</code> Version 1.0 as a recommended version</li>
         * <li><code>[1.0]</code> Version 1.0 explicitly only</li>
         * <li><code>[1.0,2.0)</code> Versions 1.0 (included) to 2.0 (not included)</li>
         * <li><code>[1.0,2.0]</code> Versions 1.0 to 2.0 (both included)</li>
         * <li><code>[1.5,)</code> Versions 1.5 and higher</li>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         *     </ul>
         *   </li>
         *   <li>Otherwise (test output contains no module information), then:
         *     <ul>
         *       <li>If the main output is on the module-path, place the test output
         *           on a {@code --patch-module} option.</li>
         *       <li>Otherwise (main output on the class-path), place the test output on the class-path too.</li>
         *     </ul>
         *   </li>
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/handler/ArtifactHandler.java

    /**
     * An artifact handler contains information explaining how an artifact plugs into the Maven build:<ul>
     * <li>Information needed to find the artifact file in a repository including extension and classifier</li>
     * <li>Information on how to use the artifact as a dependency: whether to add it to the classpath, whether to load its
     * dependencies transitively</li>
     * </ul>
     *
     */
    public interface ArtifactHandler {
        @Deprecated
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * <p><b>Algorithm:</b>
         * If the given path is a directory, then there is a choice:
         * </p>
         * <ul>
         *   <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,
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * </p>
         * <ul>
         *   <li>If this type is {@link JavaPathType#MODULES}, then this method returns
         *       {@code "--module-path path1:path2"} on Unix or {@code "--module-path path1;path2"} on Windows.</li>
         *   <li>If this type was created by {@code JavaPathType.patchModule("foo.bar")}, then the method returns
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

         * <ul>
         * <li>{@code *} (since 2.0.5)= everything,</li>
         * <li>{@code external:*}  (since 2.0.9)= everything not on the localhost and not file based,</li>
         * <li>{@code external:http:*} (since 3.8.0)= any repository not on the localhost using HTTP,</li>
         * <li>{@code repo,repo1}  (since 2.0.9)= {@code repo} or {@code repo1},</li>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         * <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>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * defined precedence onto each other to achieve proper precedence. Precedence is defined as:
         * <ul>
         *     <li>System properties (lowest precedence)</li>
         *     <li>Project properties (optional)</li>
         *     <li>User properties (highest precedence)</li>
         * </ul>
         * Note: Project properties contains properties injected from profiles, if applicable. Their precedence is
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 30K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            return validateStringNotEmpty(EMPTY, fieldName, problems, severity, version, string, null, tracker);
        }
    
        /**
         * Asserts:
         * <p/>
         * <ul>
         * <li><code>string != null</code>
         * <li><code>string.length > 0</code>
         * </ul>
         */
        @SuppressWarnings("checkstyle:parameternumber")
        private boolean validateStringNotEmpty(
                String prefix,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/mdo/maven.mdo

        <p>An XSD is available at:</p>
        <ul>
          <li><a href="https://maven.apache.org/xsd/maven-v3_0_0.xsd">https://maven.apache.org/xsd/maven-v3_0_0.xsd</a> for Maven 1.1.</li>
          <li><a href="https://maven.apache.org/xsd/maven-4.0.0.xsd">https://maven.apache.org/xsd/maven-4.0.0.xsd</a> for Maven 2.0.</li>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
Back to top