Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for NewModuleRootManager (0.31 sec)

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

            }
        }
    
        private Node getNewModuleRootManager() {
            Node newModuleRootManager = findFirstWithAttributeValue(getChildren(getXml(), "component"), "name", "NewModuleRootManager");
            Preconditions.checkNotNull(newModuleRootManager);
            return newModuleRootManager;
        }
    
        private Node findOrCreateOutputDir() {
            Node outputDirNode = findOutputDir();
    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/src/test/resources/org/gradle/plugins/ide/idea/model/moduleWithoutContent.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <module version="4">
        <component name="NewModuleRootManager" inherit-compiler-output="false">
            <orderEntry type="sourceFolder" forTests="false" />
        </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 223 bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.iml.xml

    <module relativePaths="true" type="JAVA_MODULE" version="4">
      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithAnEmptyProject/expectedFiles/root.iml.xml

    <module relativePaths="true" type="JAVA_MODULE" version="4">
      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.iml.xml

    <module relativePaths="true" type="JAVA_MODULE" version="4">
      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/top-level.iml.xml

    <module relativePaths="true" type="JAVA_MODULE" version="4">
      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/resources/org/gradle/plugins/ide/idea/model/defaultModule.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <module relativePaths="true" type="JAVA_MODULE" version="4">
        <component name="NewModuleRootManager" inherit-compiler-output="true">
            <exclude-output/>
            <orderEntry type="inheritedJdk"/>
            <content url="file://$MODULE_DIR$">
            </content>
            <orderEntry type="sourceFolder" forTests="false"/>
        </component>
        <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 435 bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

            if (scalaSdkLibrary != null) {
                Node newModuleRootManager = findOrCreateFirstChildWithAttributeValue(iml, "component", "name", "NewModuleRootManager");
    
                Node sdkLibrary = findOrCreateFirstChildWithAttributeValue(newModuleRootManager, "orderEntry", "name", scalaSdkLibrary.getName());
                setNodeAttribute(sdkLibrary, "type", "library");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/root.iml

    <?xml version="1.0" encoding="UTF-8"?>
    <module relativePaths="true" type="JAVA_MODULE" version="4">
      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output />
        <content url="file://$MODULE_DIR$" />
        <orderEntry type="inheritedJdk" />
        <orderEntry type="sourceFolder" forTests="false" />
        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 738 bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/api/api.iml.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <module relativePaths="true" type="JAVA_MODULE" version="4">
      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false"/>
          <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top