Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 26 days 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-25T10:09:00.000Z (over 5 years ago)
- Last Synced: 2024-11-08T15:00:08.350Z (3 months 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: 1
- 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=
```