Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for compatible (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                    logger.info(
                            "Looking for compatible RELEASE version of plugin {}:{}",
                            request.getGroupId(),
                            request.getArtifactId());
                    for (Version v : releases) {
                        String ver = v.toString();
                        if (isCompatible(request, ver)) {
                            version = ver;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

             * unintentionally use such a magic expression for an ordinary property. So here we check whether we
             * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
             * could still be converted by the configurator so we leave those alone). If so, back off to evaluating the
             * expression from properties only.
             */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. maven-core/pom.xml

                  <include>org.apache.maven.toolchain</include>
                  <include>org.apache.maven.usability</include>
                </includes>
                <!-- allowed non-binary backwards compatible changes -->
                <excludes>
                  <!-- START default constructor on Plexus/JSR 330 components -->
                  <exclude>org.apache.maven.lifecycle.DefaultLifecycleExecutor#DefaultLifecycleExecutor()</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *
         * <ul>
         *   <li>If {@link #CLASSES} path type is also set, then the dependency should be placed on the
         *       module-path, but is also compatible with placement on the class-path. Compatibility can
         *       be achieved, for example, by repeating in the {@code META-INF/services/} directory the services
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

            final String text = value.trim();
    
            final Class<?> rawType = toType.getRawType();
            if (rawType.isAssignableFrom(String.class)) {
                return text; // compatible type => no conversion needed
            }
    
            // use temporary Key as quick way to auto-box primitive types into their equivalent object types
            final TypeLiteral<?> boxedType =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

             * unintentionally use such a magic expression for an ordinary property. So here we check whether we
             * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
             * could still be converted by the configurator so we leave those alone). If so, back off to evaluating the
             * expression from properties only.
             */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

            }
            /* TODO should throw this immediately, but need artifact
                    else
                    {
                        throw new OverConstrainedVersionException( "Restricting incompatible version ranges" );
                    }
            */
    
            return new VersionRange(version, restrictions);
        }
    
        private List<Restriction> intersection(List<Restriction> r1, List<Restriction> r2) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

     *   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;
    
        private static final int MAX_LONGITEM_LENGTH = 18;
    
        private String value;
    
        private String canonical;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    that accompanied this code."
    
    You should also note that Oracle includes multiple, independent
    programs in this software package. Some of those programs are provided
    under licenses deemed incompatible with the GPLv2 by the Free Software
    Foundation and others.  For example, the package includes programs
    licensed under the Apache License, Version 2.0.  Such programs are
    licensed to you under their original licenses.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            Comparable[] c = new Comparable[versions.length];
            for (int i = 0; i < versions.length; i++) {
                c[i] = newComparable(versions[i]);
            }
    
            for (int i = 1; i < versions.length; i++) {
                Comparable low = c[i - 1];
                for (int j = i; j < versions.length; j++) {
                    Comparable high = c[j];
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top