Closed zlaval closed 1 year ago
Thank you for collaborating with the project by giving us feedback! Cheers!
Hi, thanks for the report! It seems this one slipped through last week. Will take care of it as soon as possible
The release fixing this issue should be available shortly. Fix version is 4.8.3. Thanks again!
Thank you.
I'm working on an AsyncAPI design and found this plugin for generating classes from the spec for Spring Boot 3.
I'm using the latest version.
id("com.sngular.scs-multiapi-gradle-plugin") version "4.8.1"
When i tried to run the plugin i got the following error:
Could not find matching constructor for: com.sngular.api.generator.plugin.asyncapi.AsyncApiGenerator(File, String, String, File, Integer)
After a quick check, i found that in the AsyncApiTask.groovy the task calls AsyncApGenerator with the following parameters:
But the AsyncApiGenerator.java has the following constructor:
The spring boot version param is in the beginning of the generator class but the task call put it at the and of the param list.
I'm new with Gradle plugins, but it seems to me a bug. I've checked this on the main branch.