摘要: Summary 配置文件的各个部分 buildscript 区域 该区域中有 repositories、dependencies 配置,标识 gradle 脚本自身需要使用的资源。 而在build.gradle文件中直接声明的依赖项、仓库地址等信息是项目自身需要的资源。 buildscript { 阅读全文
posted @ 2020-06-15 13:46 duchaoqun 阅读(268) 评论(0) 推荐(0) 编辑
摘要: Summary 查看 Grails 和 JVM 版本信息 grails -version 创建应用 grails create-app helloworld 在应用文件夹进入交互窗口 grails 清理项目 grails clean 发布项目 grails war IDEA 命令 Ctrl + Al 阅读全文
posted @ 2020-06-15 10:59 duchaoqun 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Summary Grails 是 Groovy开发,基于Gradle工具构建。 Demo buildscript { repositories { maven { url "https://repo.grails.org/grails/core" } } dependencies { classpa 阅读全文
posted @ 2020-06-15 10:44 duchaoqun 阅读(296) 评论(0) 推荐(0) 编辑