Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addModulePath (0.1 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        }
    
        /**
         * Adds a module to the module paths included in the Project.
         *
         * @param moduleFile path to the module's module file
         *
         * @since 4.0
         */
        public void addModulePath(File moduleFile) {
            modulePaths.add(pathFactory.relativePath("PROJECT_DIR", moduleFile));
        }
    
        /**
         * A set of wildcard string to be included/excluded from the resources.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaProject.java

                    // IDEA Module for project in current build: handled via `modules` model elements.
                    continue;
                }
                xmlProject.addModulePath(reference.get().getFile());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top