Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ModuleRootManager (0.15 sec)

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

                }
                if (moduleJdk != null) {
                    moduleRootManager.remove(moduleJdk);
                }
                Map<String, Object> attributes = new LinkedHashMap<>();
                attributes.put("type", "jdk");
                attributes.put("jdkName", jdkName);
                attributes.put("jdkType", "JavaSDK");
                moduleRootManager.appendNode("orderEntry", attributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

          <excludeFolder url="file://$MODULE_DIR$/folderThatWasExcludedEarlier"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    </module>'''
    
            //when
            runTask(['idea'], '''
    apply plugin: "java"
    apply plugin: "idea"
    
    idea {
        module {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top