Hi,
I want to use the code-generator-api in my project.
What is the maven dependency for this plugin?
Thanks
Hi,
You should add the following dependency in your project's pom.xml file:
<dependency> <groupId>io.freefair.gradle</groupId> <artifactId>code-generator-api</artifactId> <version>6.0.0-m2</version> </dependency>
If you are using Gradle then use following dependency code:
implementation group: 'io.freefair.gradle', name: 'code-generator-api', version: '6.0.0-m2'
Hope this will will help you in your project.
Thanks
Ads