Gradle - compileJava - remove compile Warnings

前端 未结 4 1066
醉话见心
醉话见心 2020-12-18 20:14

We use Gradle 2.1 and java plugin. During compileJava different warnings occur, for example:

warning: [options] bootstrap class path not set in conjunction w         


        
4条回答
  •  死守一世寂寞
    2020-12-18 21:11

    I think it really depends on the warnings. For the warnings I was getting, this worked:

        tasks.withType(JavaCompile) {
            options.compilerArgs += ["-nowarn", "-XDenableSunApiLintControl"]
        }
    

    Sanity restored.

提交回复
热议问题