see the docs/io-activemq-source.md
see the docs/io-activemq-sink.md
Before starting developing your own connector, please take a look at how this template project organize the files for a connector.
├── conf
├── docs
├── src
│ ├── checkstyle
│ ├── license
│ │ └── ALv2
│ ├── main
│ │ └── java
│ ├── spotbugs
│ └── test
│ └── java
confdirectory is used for storing examples of config files of this connector.docsdirectory is used for keeping the documentation of this connector.srcdirectory is used for storing the source code of this connector.src/checkstyle: store the checkstyle configuration filessrc/license: store the license header for this project.mvn license:formatcan be used for formatting the project with the stored license header in this directory.src/spotbugs: store the spotbugs configuration filessrc/main: for keeping all the main source filessrc/test: for keeping all the related tests