Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for NewModuleRootManager (0.24 sec)

  1. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/expectedFiles/root.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/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
        </content>
        <orderEntry type="inheritedJdk"/>
        <orderEntry type="sourceFolder" forTests="false"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

        private void hasScalaSdk(String imlFileName, String version) {
            def module = new XmlSlurper().parse(file(imlFileName))
            def newModuleRootManager = module.component.find { it.@name == "NewModuleRootManager" }
            assert newModuleRootManager
    
            def sdkLibrary = newModuleRootManager.orderEntry.find { it.@name == "scala-sdk-$version" }
            assert sdkLibrary
            assert sdkLibrary.@type == "library"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customModule.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <module relativePaths="true" type="JAVA_MODULE" version="4">
        <component name="NewModuleRootManager">
            <output url="file://$MODULE_DIR$/out"/>
            <output-test url="file://$MODULE_DIR$/outTest"/>
            <exclude-output/>
            <orderEntry type="jdk" jdkName="1.6" jdkType="JavaSDK" />
            <content url="file://$MODULE_DIR$">
                <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webservice/webservice.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"/>
          <excludeFolder url="file://$MODULE_DIR$/.gradle"/>
          <excludeFolder url="file://$MODULE_DIR$/build"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            //given
            def existingIml = file('root.iml')
            existingIml << '''<?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$/">
          <excludeFolder url="file://$MODULE_DIR$/folderThatWasExcludedEarlier"/>
    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