Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for html (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                                        + "For such purposes you should use the maven-enforcer-plugin. "
                                        + "See https://maven.apache.org/enforcer/enforcer-rules/requireMavenVersion.html",
                                mavenProject.getId());
                    }
                }
            }
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

     *   generally: {@code 1.0.X2 < 1.0-X3 < 1.0.1} for any string {@code X}; but prefer {@code 1.0.0-X1}
     *   over {@code 1.0.0.X1}.</li>
     * </ul>
     *
     * @see <a href="https://maven.apache.org/pom.html#version-order-specification">"Versioning" in the POM reference</a>
     */
    public class ComparableVersion implements Comparable<ComparableVersion> {
        private static final int MAX_INTITEM_LENGTH = 9;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 26K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * @since 3.1
         * @deprecated Since 3.9 there is no direct Maven2 interop offered at LRM level. See
         * <a href="https://maven.apache.org/resolver/configuration.html">Resolver Configuration</a> page option
         * {@code aether.artifactResolver.simpleLrmInterop} that provides similar semantics. This method should
         * be never invoked, and always returns {@code false}.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                    // only) but support only configuration/httpConfiguration/all, see
                    // https://maven.apache.org/guides/mini/guide-http-settings.html
                    Map<String, String> headers = null;
                    Integer connectTimeout = null;
                    Integer requestTimeout = null;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
Back to top