https://github.com/athiththan11/wso2-event-handler-maven-archetype
Maven Archetype for WSO2 Event Handlers
https://github.com/athiththan11/wso2-event-handler-maven-archetype
event-handler identity-connector-config maven maven-archetype wso2 wso2-abstract-event-handler wso2-event-handler wso2-identity-server
Last synced: about 1 month ago
JSON representation
Maven Archetype for WSO2 Event Handlers
- Host: GitHub
- URL: https://github.com/athiththan11/wso2-event-handler-maven-archetype
- Owner: athiththan11
- License: apache-2.0
- Created: 2019-07-03T17:41:48.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-25T10:09:00.000Z (almost 7 years ago)
- Last Synced: 2025-06-02T11:21:37.755Z (about 1 year ago)
- Topics: event-handler, identity-connector-config, maven, maven-archetype, wso2, wso2-abstract-event-handler, wso2-event-handler, wso2-identity-server
- Language: Java
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WSO2 Event Handler Maven Archetype
Maven Archetype for WSO2 Event Handlers. Use the following maven archetype to generate maven projects to implement WSO2 related event handlers for WSO2 IS Services.
#### `v2.0.0`
Now supports generating boilerplates with or without `IdentityConnectorConfig`. Use `-DIdentityConnectorConfig` flag and provide `Y or N` to specify the generation of boilerplate with or without connector configurations.
```xml
com.athiththan.wso2
wso2-event-handlers
2.0.0
```
## Usage
```shell
mvn archetype:generate -DarchetypeGroupId=com.athiththan.wso2 \
-DarchetypeArtifactId=wso2-event-handlers \
-DarchetypeVersion=2.0.0 \
-DgroupId= \
-DartifactId= \
-DIdentityConnectorConfig=
```
Use the following command to skip the `interactive-mode` when generating maven projects
```shell
mvn archetype:generate -DarchetypeGroupId=com.athiththan.wso2 \
-DarchetypeArtifactId=wso2-event-handlers \
-DinteractiveMode=false \
-DarchetypeVersion=2.0.0 \
-DgroupId= \
-DartifactId= \
-DIdentityConnectorConfig=
```