Michael Yan

Results 49 comments of Michael Yan

@kurb70 you should use WebDriver binaries Gradle plugin v2.7, this version support macOS ARM64 architecture. But the [default drivers repository-3.0.json file](https://github.com/webdriverextensions/webdriverextensions-maven-plugin-repository/blob/master/repository-3.0.json) is no longer maintained, you can add the drivers...

I'll close this issue for now. Based on my tests, using `@ComponentScan` will not cause performance problems, but in some scenarios it may not work, which is caused by Grails'...

If I create 2000 `DemoConfig` to configure 2000 `DemoBean`, and enable `@ComponentScan` to scan all configs. ``` @CompileStatic @ComponentScan class Application extends GrailsAutoConfiguration { static void main(String[] args) { GrailsApp.run(Application,...

There were some discussions from [Logback JIRA](https://jira.qos.ch/browse/LOGBACK-1606) , grails framework nead to support backward compatibility. Spring Boot 2.6.2 use Logback 1.2.9 now, so if Grails 5.1.2 upgrade to Spring Boot...

@jeffbrown thank you for your reply. There are three errors when running app, you can search `DomainClassGrailsPlugin` in the `startup-log.txt`. Micronaut: `Error establishing whether path is a directory: /application.yml` Grails:...

@xpusostomos you can use `org.grails.internal.grails-plugin-publish` to publish it to local maven repository. I create a plugin demo project here [grails-new-plugin-demo](https://github.com/rainboyan/grails-new-plugin-demo)

https://github.com/grails/grails-gradle-plugin/blob/5.1.x/src/main/groovy/org/grails/gradle/plugin/publishing/internal/GrailsCentralPublishGradlePlugin.groovy#L49 ``` grailsPublish { user = 'user' key = 'key' userOrg = 'my-company' // optional, otherwise published to personal bintray account repo = 'plugins' // optional, defaults to 'plugins' websiteUrl...

@xpusostomos yes, grails internal publishing plugin was outdated, but still a lot of plugins use it. I see the Grails docs has bean already updated, we should use Gradle `maven-publish`...

@xpusostomos Grails Docs 5.1.3 **Installing Local Plugins** [https://docs.grails.org/latest/guide/plugins.html#creatingAndInstallingPlugins](https://docs.grails.org/latest/guide/plugins.html#creatingAndInstallingPlugins)

@puneetbehl I see. Grails profile `plugin` contains [`install` command](https://github.com/grails-profiles/plugin/blob/master/commands/install.yml) which call Gradle task `install`(doesn't actually exist) , while `org.grails.internal.grails-plugin-publish` offer `install` task that depends on `publishToMavenLocal`, I think we should...