Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PathModularization (0.23 sec)

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

     * is for path elements of compiled codes.
     */
    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.
         */
    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)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

     * is for path elements of compiled codes.
     */
    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.
         */
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * Module descriptors are read when first requested, then cached.
         */
        PathModularization getModuleInfo(Path path) throws IOException {
            PathModularization info = moduleInfo.get(path);
            if (info == null) {
                info = new PathModularization(path, true);
                moduleInfo.put(path, info);
                pathTypes.put(path, info.getPathType());
            }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * Module descriptors are read when first requested, then cached.
         */
        PathModularization getModuleInfo(Path path) throws IOException {
            PathModularization info = moduleInfo.get(path);
            if (info == null) {
                info = new PathModularization(path, true);
                moduleInfo.put(path, info);
                pathTypes.put(path, info.getPathType());
            }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                addPathElement(outputModules.getPathType(), main);
            } else {
                outputModules = PathModularization.NONE;
            }
            if (test != null) {
                boolean addToClasspath = true;
                PathModularization testModules = cache.getModuleInfo(test);
                boolean isModuleHierarchy = outputModules.isModuleHierarchy() || testModules.isModuleHierarchy();
    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)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                addPathElement(outputModules.getPathType(), main);
            } else {
                outputModules = PathModularization.NONE;
            }
            if (test != null) {
                boolean addToClasspath = true;
                PathModularization testModules = cache.getModuleInfo(test);
                boolean isModuleHierarchy = outputModules.isModuleHierarchy() || testModules.isModuleHierarchy();
    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)
Back to top