- 授权协议: Apache
- 开发语言: Groovy
- 操作系统: 跨平台
- 软件首页: https://github.com/spring-gradle-plugins/dependency-management-plugin
软件介绍
Dependency management plugin 提供类似 Maven 依赖管理和排除功能. 根据配置的依赖管理元数据,此插件将会控制你项目的版本、传递依赖,并且将执行你项目中的所有排除声明(exclusions declared)。
示例代码:
dependencyManagement {
dependencies {
dependency 'org.springframework:spring-core:4.0.3.RELEASE'
dependency group:'commons-logging', name:'commons-logging', version:'1.1.2'
}
}
dependencies {
compile 'org.springframework:spring-core'}
