Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

            }
        }
    
        def compileWithSpecifiedEncoding() {
            given:
            goodCodeEncodedWith("ISO8859_7")
    
            and:
            buildFile << """
                apply plugin: "application"
                application.mainClass = "Main"
                compileScala.scalaCompileOptions.encoding = "ISO8859_7"
            """
    
            expect:
            succeeds("run")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

        }
    
        def "can compile with specific encoding"() {
            given:
            goodCodeEncodedWith('ISO8859_7')
    
            and:
            buildFile << """
                apply plugin: 'application'
    
                application {
                    mainClass = 'Main'
                }
                compileJava.options.encoding = \'ISO8859_7\'
            """
    
            when:
            succeeds("run")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top