Show UTF-8 text properly in Gradle

后端 未结 5 1099
清酒与你
清酒与你 2020-12-01 07:36

I have a task:

task info<<{
    println \"Gradle — система автоматической сборки, построенная на принципах Apache Ant и Apache Maven, но предоставляюща         


        
5条回答
  •  一向
    一向 (楼主)
    2020-12-01 08:35

    For my only works with this in build.gradle:

    apply plugin: 'java'
    tasks.withType(JavaCompile) {
        options.encoding = 'UTF-8'
    }
    repositories {
        mavenCentral()
    }
    ....
    test {
        systemProperty "file.encoding", "utf-8"
    }
    

提交回复
热议问题