Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Difference (0.23 sec)

  1. maven-core/plugin-manager.txt

     * resources
     *
     * We need to look at Maven, and Nexus as use cases and figure out what each of them needs to be
     * able to do
     *
     * - now what is really the difference between this and loading a component in plexus - custom
     * classloading capability - remote resolution of dependencies - do we want a model for sharing
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  2. api/maven-api-plugin/src/main/mdo/plugin.mdo

                path. As the name suggests, this is similar to requiresDependencyResolution and supports the same values.
                The important difference is this will not resolve the files for the dependencies, i.e. the artifacts
                associated with a Maven project can lack a file. As such, this annotation is meant for Mojos that only
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  3. CONTRIBUTING.md

      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    + Respect the original code style: by using the same [codestyle][code-style],
      patches should only highlight the actual difference, not being disturbed by any formatting issues:
      + Only use spaces for indentation.
      + Create minimal diffs - disable on save actions like reformat source code or organize imports.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String, String); public static int differenceAt(String, String); public static String interpolate(String, java.util.Map); public static String removeAndHump(String, String); public static String capitalizeFirstLette(String); public static String...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String, String); public static int differenceAt(String, String); public static String interpolate(String, java.util.Map); public static String removeAndHump(String, String); public static String capitalizeFirstLette(String); public static String...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 164.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String, String); public static int differenceAt(String, String); public static String interpolate(String, java.util.Map); public static String removeAndHump(String, String); public static String capitalizeFirstLette(String); public static String...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    String reverse(String); public static String reverseDelimitedStri(String, String); private static void reverseArray(Object[]); public static String abbreviate(String, int); public static String abbreviate(String, int, int); public static String difference(String, String); public static int differenceAt(String, String); public static String interpolate(String, java.util.Map); public static String removeAndHump(String, String); public static String capitalizeFirstLette(String); public static String...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 200.2K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/configuration-management.apt

     also be a directory for plugins.xml and maven.properties.
    
    * Project configuration
    
     At the project level all configuration is achieved by tweaking the POM. One of the differences between
     maven 1.x and 2.x is that all project parameterization occurs in the POM and not from properties
     files.
    
     For many of the more advanced features in Maven2 it is critical that POMs be available in the local repository.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    examined object is null. Accepts a single dummy argument to facilitate type inference. For example: assertThat(cheese, is(nullValue(Cheese.class)) Parameters: type - dummy parameter used to infer the generic type of the returned matcher notNullValue public static <T> Matcher<T> notNullValue(java.lang.Class<T> type) A shortcut to the frequently used not(nullValue(X.class)). Accepts a single dummy argument to facilitate type inference.. For example: assertThat(cheese, is(notNullValue(X.class))) instead of:...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    public static org.hamcrest.Matcher<java.lang.Object> nullValue() { return org.hamcrest.core.IsNull.nullValue(); } /** * Creates a matcher that matches if examined object is <code>null</code>. Accepts a * single dummy argument to facilitate type inference. * <p/> * For example: * <pre>assertThat(cheese, is(nullValue(Cheese.class))</pre> * * @param type * dummy parameter used to infer the generic type of the returned matcher */ public static <T> org.hamcrest.Matcher<T> nullValue(java.lang.Class<T>...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
Back to top