10 gradle 依赖第三方jar 包

来源:互联网 发布:淘宝阿里妈妈是什么 编辑:程序博客网 时间:2024/04/29 23:51
build.gradle

repositories {
    mavenCentral()

}

dependencies {
    compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
    testCompile group: 'junit', name: 'junit', version: '4.+'
}

0 0
原创粉丝点击