An example plugin for Concord server.
Demonstrates a couple of concepts:
- adding a new JAX-RS endpoint;
- using testcontainer-concord to test the plugin.
Requires latest Concord Docker images built from master.
- compile with
mvn package
; - copy
target/server-plugin-example-*.jar
into anext
directory somewhere on the filesystem; - mount the
ext
directory to the Concord Server Docker container:
docker run \
...
-v "/path/to/host/ext:/opt/concord/server/ext:ro" \
...
walmartlabs/concord-server