Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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=
```