Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for iml (0.12 sec)

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

            includeBuild buildC
    
            when:
            idea()
    
            then:
            iprHasModules "buildA.iml", "../buildB/buildB.iml", "../buildB/b1/b1.iml", "../buildB/b2/b2.iml", "../buildC/c2/c2.iml"
            // This is actually invalid: no `buildC.iml` file exists in the project. Should generated buildC iml file even when plugin not applied.
            imlHasDependencies "b1", "buildC", "c2"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaMultiModuleIntegrationTest.groovy

            List moduleFileNames = parseIprModules()
    
            ['master.iml',
             'shared-api.iml', 'shared.iml',
             'master-services.iml', 'services-util.iml',
             'util.iml', 'contrib.iml', 'contrib-services.iml',
             'very-cool-model.iml',
             'master-api.iml',
             'master-util.iml'].each {
                assert moduleFileNames.contains(it)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. 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)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaScalaConfigurer.java

        }
    
        private static void declareScalaSdk(ProjectLibrary scalaSdkLibrary, Node iml) {
            // only define a Scala SDK for a module if we could create a scalaSdkLibrary
            if (scalaSdkLibrary != null) {
                Node newModuleRootManager = findOrCreateFirstChildWithAttributeValue(iml, "component", "name", "NewModuleRootManager");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

        }
    
        @Override
        protected void onApply(final Project project) {
            getLifecycleTask().configure(withDescription("Generates IDEA project files (IML, IPR, IWS)"));
            getCleanTask().configure(withDescription("Cleans IDEA project files (IML, IPR)"));
    
            ideaModel = project.getExtensions().create("idea", IdeaModel.class);
    
            configureIdeaWorkspace(project);
            configureIdeaProject(project);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import static com.google.common.base.Strings.isNullOrEmpty;
    
    /**
     * Represents the customizable elements of an iml (via XML hooks everything of the iml is customizable).
     */
    public class Module extends XmlPersistableConfigurationObject {
    
        public static final String INHERITED = "inherited";
    
        private static final String CONTENT = "content";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    Generates the `.ipr` file. This task is only added to the root project.
    
    `ideaModule` — link:{groovyDslPath}/org.gradle.plugins.ide.idea.GenerateIdeaModule.html[GenerateIdeaModule]::
    Generates the `.iml` file
    
    `ideaWorkspace` — link:{groovyDslPath}/org.gradle.plugins.ide.idea.GenerateIdeaWorkspace.html[GenerateIdeaWorkspace]::
    Generates the `.iws` file. This task is only added to the root project.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top