| the Neo4j dialect supports calls to remote procedures but we are only testing on the embedded dialect. We need to test also tests for the remote dialects. This means that we need to create a jar containing the classes we use for the tests and deploy it on the remote server before it starts. On CI, we use docker and to do this we can generate the jar before starting the docker instance and then mount the folder with the jar on the `/plugins` folder of the docker instance. It should look like:
docker run --rm -v hibernate-ogm/neo4j-procedures/target:/plugins -d -p $BOLT_NEO4J_PORT:7687 -p $HTTP_NEO4J_PORT:7474 --name Neo4j neo4j:$NEO4J_VERSION
|