Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for orderEntry (0.14 sec)

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

        maven { url "${repoDir.toURI()}" }
    }
    
    dependencies {
        implementation "myGroup:myArtifact1:1.0"
    }
            """
    
            def module = parseImlFile("root")
            def libs = module.component.orderEntry.library
            assert libs.size() == 2
            assert libs.CLASSES.root*.@url*.text().collect { new File(it).name } as Set == [artifact1.name + "!", artifact2.name + "!"] as Set
        }
    
        @Test
    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/internal/IdeaScalaConfigurer.java

                Node newModuleRootManager = findOrCreateFirstChildWithAttributeValue(iml, "component", "name", "NewModuleRootManager");
    
                Node sdkLibrary = findOrCreateFirstChildWithAttributeValue(newModuleRootManager, "orderEntry", "name", scalaSdkLibrary.getName());
                setNodeAttribute(sdkLibrary, "type", "library");
                setNodeAttribute(sdkLibrary, "level", "project");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top