Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/streamnative/pulsar-io-activemq
ActiveMQ Connector integrates Apache Pulsar with Apache ActiveMQ.
https://github.com/streamnative/pulsar-io-activemq
apache-activemq apache-pulsar pulsar-io sink-connector source-connector
Last synced: about 1 month ago
JSON representation
ActiveMQ Connector integrates Apache Pulsar with Apache ActiveMQ.
- Host: GitHub
- URL: https://github.com/streamnative/pulsar-io-activemq
- Owner: streamnative
- License: apache-2.0
- Created: 2020-04-12T14:42:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T01:30:24.000Z (9 months ago)
- Last Synced: 2024-04-12T09:10:31.222Z (9 months ago)
- Topics: apache-activemq, apache-pulsar, pulsar-io, sink-connector, source-connector
- Language: Java
- Homepage:
- Size: 85 KB
- Stars: 6
- Watchers: 28
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
### ActiveMQ Source Doc
see the [docs/io-activemq-source.md](docs/io-activemq-source.md)
### ActiveMQ Source Doc
see the [docs/io-activemq-sink.md](docs/io-activemq-sink.md)
### Project Layout
Before starting developing your own connector, please take a look at
how this template project organize the files for a connector.```bash
├── conf
├── docs
├── src
│ ├── checkstyle
│ ├── license
│ │ └── ALv2
│ ├── main
│ │ └── java
│ ├── spotbugs
│ └── test
│ └── java```
- `conf` directory is used for storing examples of config files of this connector.
- `docs` directory is used for keeping the documentation of this connector.
- `src` directory is used for storing the source code of this connector.
- `src/checkstyle`: store the checkstyle configuration files
- `src/license`: store the license header for this project. `mvn license:format` can
be used for formatting the project with the stored license header in this directory.
- `src/spotbugs`: store the spotbugs configuration files
- `src/main`: for keeping all the main source files
- `src/test`: for keeping all the related tests