gradle provided和compile的區(qū)別
1 回答

梵蒂岡之花
TA貢獻(xiàn)1900條經(jīng)驗(yàn) 獲得超5個(gè)贊
gradle provided和compile的區(qū)別在于使用providedCompile的前提是apply plugin: 'war'
1、Gradle compile:
假如你的jar包存在代碼依賴性,在編譯、運(yùn)行時(shí)候需要依賴代碼,那就用compile
例如 :
compile 'org.springframework.boot:spring'
2、Gradle providedCompile:
假如你的jar包存在代碼依賴性,但是在編譯的時(shí)候才用得上,而運(yùn)行時(shí)不需要,就用providedCompile
例如:
providedCompile 'org.springframework.boot:spring'
- 1 回答
- 0 關(guān)注
- 711 瀏覽
添加回答
舉報(bào)
0/150
提交
取消