Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getImplementationModules (0.46 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/classpath/PluginModuleRegistry.java

        /**
         * Plugin modules exposed in the Gradle API.
         */
        Set<Module> getApiModules();
    
        /**
         * Plugin modules exposed to the Gradle runtime only.
         */
        Set<Module> getImplementationModules();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/DynamicModulesClassPathProvider.java

            }
            for (Module pluginModule : pluginModuleRegistry.getApiModules()) {
                classpath = classpath.plus(pluginModule.getClasspath());
            }
            for (Module pluginModule : pluginModuleRegistry.getImplementationModules()) {
                classpath = classpath.plus(pluginModule.getClasspath());
            }
            return removeJaxbIfIncludedInCurrentJdk(classpath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top