ZHANGSHUNLIN commented on issue #217:
URL: https://github.com/apache/bifromq/issues/217#issuecomment-3709588811
It is recommended to use the Maven archetype. First, install the
bifromq-plugin/bifromq-plugin-archetype project into your local repository:
```bash
mvn clean install -U -Dmaven.test.skip=true -pl
bifromq-plugin/bifromq-plugin-archetype
```
Then execute:
```bash
mvn archetype:generate \
-DarchetypeGroupId=org.apache.bifromq \
-DarchetypeArtifactId=bifromq-plugin-archetype \
-DarchetypeVersion=[current_version] \
-DgroupId=com.demo.plugin \
-DartifactId=my-plugin-name \
-Dversion=1.0.0-SNAPSHOT \
-DpluginName=MyPlugin \
-DpluginContextName=MyPluginContext \
-DbifromqVersion=[current_version] \
-DinteractiveMode=false
```
You can then copy your business logic code into the generated project, which
will help you bypass environment-related issues.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]