为了账号安全,请及时绑定邮箱和手机立即绑定

gradle provided和compile的区别?

gradle provided和compile的区别?

一只萌萌小番薯 2018-12-31 04:00:11
gradle provided和compile的区别? 
查看完整描述

1 回答

?
繁星点点滴滴

TA贡献1803条经验 获得超3个赞

gradle provided和compile的区别在于使用providedCompile的前提是apply plugin: 'war'

1、Gradle compile:

假如你的jar包存在代码依赖性,在编译、运行时候需要依赖代码,那就用compile

例如 :

compile 'org.springframework.boot:spring'

2、Gradle providedCompile:

假如你的jar包存在代码依赖性,但是在编译的时候才用得上,而运行时不需要,就用providedCompile

例如:

providedCompile 'org.springframework.boot:spring'


查看完整回答
反对 回复 2019-01-16
  • 1 回答
  • 0 关注
  • 603 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信