Jeff Scott Brown

Results 148 comments of Jeff Scott Brown
trafficstars

Thank you @rainboyan! The **Installing Local Plugins** section at https://docs.grails.org/5.1.4/guide/plugins.html#creatingAndInstallingPlugins does describe how to configure `maven-publish` to install to your `mavenLocal()` using `publishToMavenLocal`. That is a common technique that Grails...

``` ~ $ grails -version | Grails Version: 5.1.4 | JVM Version: 11.0.14 ~ $ ~ $ ~ $ grails create-plugin --features maven-publish somemavendemo | Plugin created at /Users/jeffscottbrown/somemavendemo ~...

@puneetbehl Do you think the `install` command should be repaired, or the docs should be updated?

> it's not clear to me what goes in githubSlug or other parameters. I don't know why it needs to be this hard. If all you want to do is...

> I think we should keep install command, because it's useful and simple. Does the `install` command offer something that `publishToMavenLocal` does not?

I put your dependencies in a project at https://github.com/jeffbrown/chiranjibkarn-issue12376. Can you send a PR to that repo that demonstrates the problem? Thank you for any feedback!

Thank you. I have deleted my repo. The repo at [github.com/ChiranjibKarn/chiranjibkarn-issue12376](https://github.com/ChiranjibKarn/chiranjibkarn-issue12376) now contains code to reproduce the issue.

I have worked to create a sample application to put your code in and there are a number of pieces missing that it would be helpful if you could provide....

> Create controller in Grails 5 that extends a non-trait. See the project at [github.com/jeffbrown/jagarciaissue12443](https://github.com/jeffbrown/jagarciaissue12443). [grails-app/controllers/jagarciaissue12443/DemoController.groovy](https://github.com/jeffbrown/jagarciaissue12443/blob/736fee4749ed5d5087cfb27021570749293bad36/grails-app/controllers/jagarciaissue12443/DemoController.groovy) ``` package jagarciaissue12443 class DemoController extends BaseController { def index() { render 'DemoController success'...

> I don't see the BaseController definition. `BaseController` is defined at [src/main/groovy/jagarciaissue12443/BaseController.groovy](https://github.com/jeffbrown/jagarciaissue12443/blob/6c85e18f6ca3fd5bbf023098d75590d77834867d/src/main/groovy/jagarciaissue12443/BaseController.groovy). It was made `abstract` in the commit at [https://github.com/jeffbrown/jagarciaissue12443/commit/6c85e18f6ca3fd5bbf023098d75590d77834867d](https://github.com/jeffbrown/jagarciaissue12443/commit/6c85e18f6ca3fd5bbf023098d75590d77834867d). It would be helpful if you could send a...