Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .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)
  8. 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)
  9. 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)
  10. 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)
Back to top