How to download dependencies in gradle

前端 未结 8 1337
暗喜
暗喜 2020-11-30 23:00

I have a custom compile task.

task compileSpeedTest(type: JavaCompile) {
    classpath = files(\'build\')
    source = fileTree(\'src/test/java/speed\')
             


        
8条回答
  •  长情又很酷
    2020-11-30 23:44

    For Intellij go to View > Tool Windows > Gradle > Refresh All Projects (the blue circular arrows at the top of the Gradle window.

提交回复
热议问题