摘要: Part of Class/Interface Declaration Notes 1 Class/interface documentation comment (/**...*/) See "Documentation Comments" on page 9 for information on 阅读全文
posted @ 2020-06-04 16:11 花染梦 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 几种创建 gradle 任务的方法 1.普通创建 task hello1 { doLast{ println 'hello1' } } 2.直接用任务名称创建 Task hello2 = task(hello2) hello2.doLast { println "hello2" } 3.任务名称+任 阅读全文
posted @ 2020-06-04 11:01 花染梦 阅读(252) 评论(0) 推荐(0) 编辑