赞
踩
gradle就是构建工具,他使用的语言是groovy
功能类似java的maven、ant建立文件依赖关系,并打包输出
gradle中央库,找不到可以用maven替代
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
dependencies {
compile 'org.hibernate:hibernate-core:3.6.7.Final'
testCompile ‘junit:junit:4.+'
}
依赖冲突,多个依赖项指向同一个依赖项的不同版本时就会引起依赖冲突
apply plugin: com.atom.MyPlugin
class MyPlugin implements Plugin<Project>{
@Override
void apply(Pro
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。