Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for iml (0.03 sec)

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

      </component>
      <component name="ProjectModuleManager">
        <modules>
          <module fileurl="file://$PROJECT_DIR$/root.iml" filepath="$PROJECT_DIR$/root.iml"/>
          <module fileurl="file://$PROJECT_DIR$/a/a.iml" filepath="$PROJECT_DIR$/a/a.iml"/>
        </modules>
      </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. .gitignore

    !/.idea/misc.xml
    !/.idea/codeStyles
    !/.idea/inspectionProfiles
    !/.idea/icon.png
    !/.idea/icon_dark.png
    */**/.idea
    */**/.shelf
    .shelf
    /*.iml
    /*/*.iml
    /*/*/*.iml
    /*/*/*/*.iml
    /*/*/*/*/*.iml
    /out
    /*/out
    /*/*/out
    /*/*/*/out
    /*/*/*/*/out
    /.teamcity/target
    /gradle.ipr
    /gradle.iws
    
    # Eclipse
    # -------
    *.classpath
    *.project
    *.settings
    /bin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaLifecycleIntegrationTest.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"
        }
    
        @Override
        String[] getGenerationTaskNames(String projectPath) {
            def taskNames = []
            if (projectPath == ":") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        private final IdeaModuleIml iml;
        private final Project project;
        private PathFactory pathFactory;
        private boolean offline;
        private Map<String, Iterable<File>> singleEntryLibraries;
    
        @Inject
        public IdeaModule(Project project, IdeaModuleIml iml) {
            this.project = project;
            this.iml = iml;
    
            this.testSources = project.getObjects().fileCollection();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/ConfigurationHooksIntegrationTest.groovy

    apply plugin: 'java'
    apply plugin: 'idea'
    
    idea {
        module {
            iml {
                whenMerged { it.jdkName = '1.44' }
            }
        }
    
        project {
            ipr {
                whenMerged { it.wildcards += '!?*.ruby' }
            }
        }
    }
    '''
            //then
            def iml = getFile([:], 'root.iml').text
            assert iml.contains('1.44')
    
            def ipr = getFile([:], 'root.ipr').text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ide/idea/groovy/build.gradle

    // tag::module-before-merged[]
    idea.module.iml {
        beforeMerged { module ->
            module.dependencies.clear()
        }
    }
    // end::module-before-merged[]
    
    // tag::project-before-merged[]
    idea.project.ipr {
        beforeMerged { project ->
            project.modulePaths.clear()
        }
    }
    // end::project-before-merged[]
    
    
    // tag::module-when-merged[]
    idea.module.iml {
        whenMerged { module ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 777 bytes
    - Viewed (0)
  7. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/fixtures/IdeaModuleFixture.groovy

    class IdeaModuleFixture extends IdeProjectFixture {
        private final GPathResult iml
        private final TestFile file
    
        IdeaModuleFixture(TestFile file, GPathResult iml) {
            this.iml = iml
            this.file = file
        }
    
        String getLanguageLevel() {
            if (iml.component.@LANGUAGE_LEVEL.size() != 0) {
                return iml.component.@LANGUAGE_LEVEL
            }
            return null
        }
    
    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/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencySubstitutionIntegrationTest.groovy

            resolutionStrategy.dependencySubstitution {
                substitute module("junit:junit:4.7") using project(":project1")
            }
        }
    }
    """)
    
            def dependencies = parseIml("project2/project2.iml").dependencies
            assert dependencies.libraries.size() == 0
            assert dependencies.modules.size() == 1
            dependencies.assertHasModule(['COMPILE'], 'project1')
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectTest.groovy

            def ideaModule = Mock(IdeaModule)
            _ * ideaModule.getOutputFile() >> new File("root/other.iml")
    
            when:
            project.configure([ideaModule], "1.6", new IdeaLanguageLevel("JDK_1_5"), JavaVersion.VERSION_1_8, ['?*.groovy'], [], '')
    
            then:
            project.modulePaths as Set == [path('file://$PROJECT_DIR$/other.iml')] as Set
    
        }
    
        def customJdkAndWildcards_shouldBeMerged() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.idea.model.IdeaModule.xml

                    <td><literal>project.targetCompatibility</literal></td>
                </tr>
                <tr>
                    <td>iml</td>
                    <td/>
                    <td/>
                </tr>
                <tr>
                    <td>outputFile</td>
                    <td>#name + <literal>'.iml'</literal></td>
                    <td/>
                </tr>
            </table>
        </section>
        <section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top