Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for compilerLibraryLevel (0.24 sec)

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

            def facet = facetManager.facet.find { it.@name == "Scala" }
            assert facet
            assert facet.@type == "scala"
    
            def compilerLibraryLevel = facet.configuration.option.find { it.@name == "compilerLibraryLevel" }
            assert compilerLibraryLevel
            assert compilerLibraryLevel.@value == "Project"
    
            def compilerLibraryName = facet.configuration.option.find { it.@name == "compilerLibraryName" }
    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 configuration = findOrCreateFirstChildNamed(scalaFacet, "configuration");
    
            Node libraryLevel = findOrCreateFirstChildWithAttributeValue(configuration, "option", "name", "compilerLibraryLevel");
            setNodeAttribute(libraryLevel, "value", "Project");
    
            Node libraryName = findOrCreateFirstChildWithAttributeValue(configuration, "option", "name", "compilerLibraryName");
    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