jamesfredley opened a new issue, #14820:
URL: https://github.com/apache/grails-core/issues/14820
### Issue description
`grails create-plugin myplugin` in grails-shell-cli generates a `web-plugin`
profile app
`grails -t forge create-plugin myplugin` in grails-forge-cli generates a
`plugin` profile app
This difference has been true since the introduction on grails-forge
`grails create-app -profile plugin myplugin` in grails-shell-cli generates a
`plugin` profile app
`grails -t forge create-web-plugin myplugin` in grails-forge-cli generates
a `web-plugin` profile app
grails-shell-cli does not have a create-web-plugin command
Forge web-plugin, gradle plugins:
```
plugins {
id "groovy"
id "war"
id "idea"
id "eclipse"
}
// Not Published to Gradle Plugin Portal
apply plugin: "asset-pipeline"
apply plugin: "org.apache.grails.gradle.grails-web"
apply plugin: "org.apache.grails.gradle.grails-gsp"
apply plugin: "org.apache.grails.gradle.grails-plugin"
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]