Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 74 for iml (0.02 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeMultiProjectBuildIntegrationTest.groovy

            ipr.modules.assertHasModules(
                '$PROJECT_DIR$/root.iml',
                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
                '$PROJECT_DIR$/shared/api/shared-api.iml',
                '$PROJECT_DIR$/shared/model/model.iml')
    
            def apiDependencies = parseIml(file('api/root-api.iml')).dependencies
            apiDependencies.modules.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

            iml {
                beforeMerged { it.excludeFolders.clear() }
                whenMerged   { it.jdkName = '1.33'   }
            }
        }
    }
    ''')
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('folderThatIsExcludedNow')
            assert !iml.contains('folderThatWasExcludedEarlier')
            assert iml.contains('1.33')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/IdeaModuleTest.groovy

            def iml = Mock(IdeaModuleIml)
            def module = TestUtil.newInstance(IdeaModule, moduleProject, iml)
            expect:
            module.languageLevel == null
        }
    
        def "target bytecode version is null for non java projects"() {
            given:
            project.getPlugins().apply(JavaPlugin)
            project.getPlugins().apply(IdeaPlugin)
            def iml = Mock(IdeaModuleIml)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

        outputDir = file('foo-out')
        testOutputDir = file('foo-out-test')
    }
    """
    
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('inherit-compiler-output="false"')
            assert iml.contains('foo-out')
            assert iml.contains('foo-out-test')
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void dslSupportsShortFormsForModule() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleDeduplicationIntegrationTest.groovy

        protected String getConfiguredModule() {
            return "idea.module"
        }
    
        @Override
        protected String projectName(String path) {
            File iml = file(path).listFiles().find { it.name.endsWith("iml") }
            assert iml != null
            return iml.name - ".iml"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaSourcesAndJavadocJarsIntegrationTest.groovy

            IdeaModuleFixture iml =  parseIml("root.iml")
            def libraryEntry = iml.dependencies.libraries.find { it.jarName.startsWith(apiJarPrefix) }
            assert libraryEntry != null : "gradle API jar not found"
            return libraryEntry
        }
    
        void ideFileContainsNoSourcesAndJavadocEntry() {
            IdeaModuleFixture iml =  parseIml("root.iml")
            iml.dependencies.libraries.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.ipr.xml

      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
          <module fileurl="file://$PROJECT_DIR$/api/api.iml" filepath="$PROJECT_DIR$/api/api.iml"/>
          <module fileurl="file://$PROJECT_DIR$/webservice/webservice.iml" filepath="$PROJECT_DIR$/webservice/webservice.iml"/>
        </modules>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/worksWithNonStandardLayout/expectedFiles/root/root.ipr.xml

        <modules>
          <module fileurl="file://$PROJECT_DIR$/../top-level.iml" filepath="$PROJECT_DIR$/../top-level.iml"/>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
          <module fileurl="file://$PROJECT_DIR$/../a child project/a_child.iml" filepath="$PROJECT_DIR$/../a child project/a_child.iml"/>
        </modules>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            iml('root').languageLevel == null
            iml('child1').languageLevel == null
            iml('child2').languageLevel == null
            iml('child3').languageLevel == null
        }
    
        def getIpr() {
            return IdeaFixtures.parseIpr(file("root.ipr"))
        }
    
        def iml(String name = 'root') {
            if (name == 'root') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaCompositeBuildIntegrationTest.groovy

                '$PROJECT_DIR$/api/root-api.iml',
                '$PROJECT_DIR$/shared/shared.iml',
                '$PROJECT_DIR$/shared/api/shared-api.iml',
                '$PROJECT_DIR$/shared/model/model.iml',
                '$PROJECT_DIR$/util/util.iml',
                '$PROJECT_DIR$/other/other.iml')
    
            def apiDependencies = parseIml(file('api/root-api.iml')).dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top