Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for orderEntry (0.2 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.iml.xml

      <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>
      <component name="ModuleRootManager"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 482 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/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

        maven { url "${repoDir.toURI()}" }
    }
    
    dependencies {
        implementation "myGroup:myArtifact1:1.0"
    }
            """
    
            def module = parseImlFile("root")
            def libs = module.component.orderEntry.library
            assert libs.size() == 2
            assert libs.CLASSES.root*.@url*.text().collect { new File(it).name } as Set == [artifact1.name + "!", artifact2.name + "!"] as Set
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

    import com.google.common.base.Objects;
    import com.google.common.base.Strings;
    import groovy.util.Node;
    
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * Represents an orderEntry of type module in the iml XML.
     */
    public class ModuleDependency implements Dependency {
    
        private String name;
        private String scope;
        private boolean exported;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

    import java.util.Collection;
    import java.util.LinkedHashMap;
    import java.util.Map;
    import java.util.Set;
    
    import static com.google.common.base.Strings.isNullOrEmpty;
    
    /**
     * Represents an orderEntry of type module-library in the iml XML.
     */
    public class ModuleLibrary implements Dependency {
    
        private Set<Path> classes;
        private Set<JarDirectory> jarDirectories;
        private Set<Path> javadoc;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/folderThatWasExcludedEarlier"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    </module>'''
    
            //when
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaModuleFixture.groovy

                assert setDiff.leftOnly.empty
                assert setDiff.rightOnly.empty
            }
        }
    
        ImlDependencies getDependencies() {
            new ImlDependencies(iml.component.orderEntry.collect { it ->
                if (it.@type == 'module-library') {
                    def lib = new ImlModuleLibrary()
                    lib.type = it.@type
                    lib.url = ******@****.***()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

                Node newModuleRootManager = findOrCreateFirstChildWithAttributeValue(iml, "component", "name", "NewModuleRootManager");
    
                Node sdkLibrary = findOrCreateFirstChildWithAttributeValue(newModuleRootManager, "orderEntry", "name", scalaSdkLibrary.getName());
                setNodeAttribute(sdkLibrary, "type", "library");
                setNodeAttribute(sdkLibrary, "level", "project");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top