How to download dependencies in gradle

前端 未结 8 1325
暗喜
暗喜 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:33

    I have found this answer https://stackoverflow.com/a/47107135/3067148 also very helpful:

    gradle dependencies will list the dependencies and download them as a side-effect.

提交回复
热议问题