hello i try to develop my own custom library : https://documentation.bonitasoft.com/bonita/latest/software-extensibility/custom-library-development
wirk environment ( maven and groovy) need a little help to generate my groovy folder structure and create my first class.
```
mvn archetype:generate -DgroupId=xyz.bindtech.extension -DartifactId=bonita-bank-library -DarchetypeArtifactId=groovy
[INFO] Scanning for projects...
[INFO]
[INFO] -------------< xyz.bindtech.extension:bonita-bank-library >-------------
[INFO] Building bonita-bank-library 1.0-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] >>> maven-archetype-plugin:3.2.1:generate (default-cli) > generate-sources @ bonita-bank-library >>>
[INFO]
[INFO] <<< maven-archetype-plugin:3.2.1:generate (default-cli) < generate-sources @ bonita-bank-library <<<
[INFO]
[INFO]
[INFO] --- maven-archetype-plugin:3.2.1:generate (default-cli) @ bonita-bank-library ---
[INFO] Generating project in Interactive mode
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/archetypes/groovy-jar/1.0/groovy-jar-1.0.pom
[WARNING] The POM for org.apache.maven.archetypes:groovy-jar:jar:1.0 is missing, no dependency information available
Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/archetypes/groovy-jar/1.0/groovy-jar-1.0.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.707 s
[INFO] Finished at: 2023-12-05T22:16:52+01:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate (default-cli) on project bonita-bank-library: The desired archetype does not exist (org.apache.maven.archetypes:groovy-jar:1.0) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
```