Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PATCH_MODULE (0.09 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *
         * Note that this option is incomplete, because it must be followed by a module name.
         * Use this type only when the module to patch is unknown.
         *
         * @see #patchModule(String)
         */
        PATCH_MODULE(StandardLocation.PATCH_MODULE_PATH, "--patch-module"),
    
        /**
         * The path identified by the Java {@code --processor-path} option.
         * The Java tools location is {@link StandardLocation#ANNOTATION_PROCESSOR_PATH}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

            for (PathType type : types) {
                if (type instanceof JavaPathType.Modular) {
                    type = ((JavaPathType.Modular) type).rawType();
                }
                if (JavaPathType.PATCH_MODULE.equals(type)) {
                    return true;
                }
            }
            return false;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top