Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for iml (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. .space/CODEOWNERS

    /generators/analysis-api-generator/ "Kotlin IDE Analysis Core"
    /generators/builtins/ A.Qurbonzoda Vsevolod.Tolstopyato Ilya.Gorbunov Filipp.Zhinkin
    /generators/evaluate/ "Kotlin Compiler Core"
    /generators/ide-iml-to-gradle-generator/ "Kotlin Build Infrastructure"
    /generators/interpreter/ "Kotlin Common Backend"
    /generators/main/ "Kotlin Build Infrastructure"
    /generators/nativeInteropRuntime/ "Kotlin Native"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top