Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for compact (0.2 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

                }
            }
    
            /*
             * NOTE: This is primarily to keep backward-compat with Maven 2.x which did not validate that dependencies are
             * unique within a single POM. Upon multiple declarations, 2.x just kept the last one but retained the order of
             * the first occurrence. So when we're in lenient/compat mode, we have to deal with such broken POMs and mimic
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

                    .collect(Collectors.toList());
        }
    
        private Map<String, Lifecycle> lookupLifecycles() {
            // TODO: Remove the following code when maven-compat is gone
            // This code is here to ensure maven-compat's EmptyLifecycleExecutor keeps on working.
            if (lookup == null) {
                return customLifecycles != null ? customLifecycles : new HashMap<>();
            }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  3. maven-compat/src/site/apt/index.apt

    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
     -----
     Introduction
     -----
     Hervé Boutemy
     -----
     2016-05-29
     -----
    
    Maven Compat
    
     Maven2 classes maintained as compatibility layer for plugins that need to keep Maven2 compatibility.
    
     Plugins should avoid these classes and be updated to use only Maven3 dependencies (and require Maven3): see
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Jan 24 22:50:10 GMT 2017
    - 1.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

        <T> void set(@Nonnull Key<T> key, @Nullable T value);
    
        /**
         * Associates the specified session data with the given key if the key is currently mapped to the given value. This
         * method provides an atomic compare-and-update of some key's value.
         *
         * @param key the key under which to store the session data, must not be {@code null}
         * @param oldValue the expected data currently associated with the key, may be {@code null}
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

        <module>maven-reporting-api</module>
        <module>maven-project-builder</module>
        <module>maven-mercury</module>
        <module>maven-embedder</module>
        <module>maven-toolchain</module>
        <module>maven-compat</module>
        <module>maven-repository</module>
        <module>maven-repository-mercury</module>
      </modules>
      <!--start-->
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Sep 11 08:52:20 GMT 2021
    - 22.4K bytes
    - Viewed (0)
  6. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

        <module>maven-reporting-api</module>
        <module>maven-project-builder</module>
        <module>maven-mercury</module>
        <module>maven-embedder</module>
        <module>maven-toolchain</module>
        <module>maven-compat</module>
        <module>maven-repository</module>
        <module>maven-repository-mercury</module>
      </modules>
      <!--start-->
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  7. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            assertEquals(0, c2.compareTo(c1), "expected " + v2 + " == " + v1);
        }
    
        private void checkVersionsArrayEqual(String[] array) {
            // compare against each other (including itself)
            for (int i = 0; i < array.length; ++i)
                for (int j = i; j < array.length; ++j) checkVersionsEqual(array[i], array[j]);
        }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    ng, int, String); } org/codehaus/plexus/classworlds/launcher/Configurator$1.class package org.codehaus.plexus.classworlds.launcher; synchronized class Configurator$1 implements java.util.Comparator { void Configurator$1(Configurator); public int compare(Object, Object); } org/codehaus/plexus/classworlds/launcher/Configurator$2.class package org.codehaus.plexus.classworlds.launcher; synchronized class Configurator$2 implements java.io.FilenameFilter { void Configurator$2(Configurator, String, String);...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 41.6K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

            for (String version : args) {
                ComparableVersion c = new ComparableVersion(version);
    
                if (prev != null) {
                    int compare = prev.compareTo(c);
                    System.out.println("   " + prev.toString() + ' ' + ((compare == 0) ? "==" : ((compare < 0) ? "<" : ">"))
                            + ' ' + version);
                }
    
                System.out.println(
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 26K bytes
    - Viewed (0)
  10. maven-compat/pom.xml

      <parent>
        <groupId>org.apache.maven</groupId>
        <artifactId>maven</artifactId>
        <version>4.0.0-alpha-14-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-compat</artifactId>
    
      <name>Maven Compat (deprecated)</name>
      <description>Deprecated Maven2 classes maintained as compatibility layer.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Mar 06 19:57:04 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top