Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for popular (0.22 sec)

  1. maven-core/src/site/apt/offline-mode.apt

      Since we're only going to concern ourselves with states where localhost is
      still active, we only need to worry about this case when the server container
      is <<not>> installed on localhost. This allows the popular pattern of starting
      a server container in-JVM, running tests against it, and shutting it down.
    
    ** SCM mojos
    
      See below for discussion on SCM-related operations. Any mojo which
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                if (type instanceof JavaPathType.Modular) {
                    type = ((JavaPathType.Modular) type).rawType();
                }
                if (JavaPathType.PATCH_MODULE.equals(type)) {
                    return true;
                }
            }
            return false;
        }
    
        /**
         * Returns whether at least one previously added modular dependency contains a module of the given name.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * @return an identification of the patch-module path for the given module.
         *
         * @see Modular#moduleName()
         */
        @Nonnull
        public static Modular patchModule(@Nonnull String moduleName) {
            return PATCH_MODULE.new Modular(moduleName);
        }
    
        /**
         * The tools option for this path, or {@code null} if none.
         *
         * @see #option()
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

     */
    class PathModularization {
        /**
         * A unique constant for all non-modular dependencies.
         */
        public static final PathModularization NONE = new PathModularization();
    
        /**
         * Name of the file to use as a sentinel value for deciding if a directory or a JAR is modular.
         */
        private static final String MODULE_INFO = "module-info.class";
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  5. maven-core/plugin-manager.txt

     * they could be resolved from a local repository - I think we need a simple dependency model here
     * that is more mercury related and not Maven related i.e. no POMs - workspace resolver - we need
     * tools to pre-populate this repository
     *
     * h3. create an isolated classloader
     *
     * h3. lookup the plugin with a configuration
     *
     * h3. execute the plugin
     *
    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)
  6. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

            /*
             * This provides backward-compat with 2.x that allowed plugins like the maven-remote-resources-plugin:1.0 to
             * populate the builder configuration with model repositories instead of artifact repositories.
             */
    
            if (repositories != null) {
                boolean normalized = false;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                if (type instanceof JavaPathType.Modular) {
                    type = ((JavaPathType.Modular) type).rawType();
                }
                if (JavaPathType.PATCH_MODULE.equals(type)) {
                    return true;
                }
            }
            return false;
        }
    
        /**
         * Returns whether at least one previously added modular dependency contains a module of the given name.
         *
    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)
  8. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java

            // use DefaultJavaToolChain for compatibility with maven 3.2.3 and earlier
    
            @SuppressWarnings("deprecation")
            JavaToolchainImpl jtc = new DefaultJavaToolChain(model, logger);
    
            // populate the provides section
            Properties provides = model.getProvides();
            for (Entry<Object, Object> provide : provides.entrySet()) {
                String key = (String) provide.getKey();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * is {@link JavaPathType#MODULES}, then this method returns {@code "--module-path"}.
         * The option does not include the {@linkplain JavaPathType.Modular#moduleName() module name}
         * on which it applies.
         *
         * @return the name of the tool option for this path type
         */
        @Nonnull
        Optional<String> option();
    
        /**
    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)
  10. maven-core/lifecycle-executor.txt

    foreach configuration element:
     - if read only and being set squawk
    
     - find the parameter
     - get value from expression or default
     - if required and null squawk
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 9.7K bytes
    - Viewed (0)
Back to top