在哪里可以找到Grails 3.2.11命令行源代码文件?

当执行命令grails help时,它显示命令列表:

| Available Commands (type grails help 'command-name' for more info):
| Command Name                          Command Description
---------------------------------------------------------------------------
create-command                          Creates an Application Command
create-controller                       Creates a controller
create-domain-class                     Creates a Domain Class
create-functional-test                  Creates a Geb Functional Test
create-integration-test                 Creates an integration test
create-interceptor                      Creates an interceptor
create-scaffold-controller              Creates a scaffolded controller
create-script                           Creates a Grails script
create-service                          Creates a Service
create-taglib                           Creates a Tag Library
create-unit-test                        Creates a unit test
dependency-report                       Prints out the Grails application's dependencies

例如grails dependency-report。在哪里可以找到其源代码?

提前致谢。

最佳答案

一段时间后,我在这里找到了源代码:https://github.com/grails/grails-profile-repository/tree/master/profiles/base/commands

09-11 18:40