美文网首页
BigGradle Post常用命令

BigGradle Post常用命令

作者: LoWang | 来源:发表于2017-01-25 17:06 被阅读0次

    gradle tasks

    列出当前可执行任务

    gradle eclipse

    生成eclipe项目所需文件

    apply plugin: 'java'
    apply plugin: 'eclipse'
    repositories {
        jcenter()
    }
    
    dependencies {
    }
    

    gradle :modelname:build

    指定编译子项目

    compile fileTree(dir:'libs',include:['*.jar'])

    加入本地依赖包

    compile project(':core')

    引用其他模块

    相关文章

      网友评论

          本文标题:BigGradle Post常用命令

          本文链接:https://www.haomeiwen.com/subject/biotittx.html