https://github.com/wavemaker/wavemaker-connector-archetype
https://github.com/wavemaker/wavemaker-connector-archetype
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wavemaker/wavemaker-connector-archetype
- Owner: wavemaker
- Created: 2020-06-18T05:36:09.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-18T06:32:18.000Z (almost 6 years ago)
- Last Synced: 2025-03-04T12:43:56.707Z (about 1 year ago)
- Language: Java
- Size: 5.86 KB
- Stars: 1
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Step to build archetype
Step1 : Build archetype
-----------------------
Go to connector-archetype directory
> mvn clean install
Step2 : Create connector project using archetype
------------------------------------------------
go to any directory where you want to create your project
> mvn archetype:generate -DarchetypeGroupId=com.wavemaker.connector -DarchetypeArtifactId=wavemaker-connector-archetype -DarchetypeVersion=0.1 -DgroupId=<> -DartifactId=<> -Dversion=<>
Replace placeholder in the above command with your project details, such as
Where
-DgroupId = com.wavemaker.connector
-DartifactId = mongodbconnector
-Dversion = 1.0
Step3 : Provide Inputs
----------------------
Your project bulding will be done in interactive mode, by Asking following question
with default values
Define value for property 'package' com.wavemaker.connector.bpmn: :
Define value for property 'connector-name' bpmn: :
Define value for property 'connector-description' A simple connector bpmn that can be used in WaveMaker application: :
Define value for property 'connector-java-class-name' WaveMakerbpmnConnector: : BPMNConnector
Step4: Build you project
-------------------------
Go to your project directory
> mvn clean install
In the dist directory you can find a zip file which can be imported in the WaveMaker application.