gradle添加依赖的三种⽅式第⼀种(只添加⼀种依赖,全部写全):
compile "group":"org.springframework","name":"spring-beans","version":"5.2.5.RELEASE"
第⼆种(只添加⼀种依赖,简写):
compile "org.springframework:spring-core:5.2.5.RELEASE"
第三种(添加多种依赖):
compile(
spring framework"org.springframework:spring-core:5.2.5.RELEASE",
"org.springframework:spring-beans:5.2.5.RELEASE"
)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。