Instructions for contributing to plaid-java. A java client library for the Plaid API. This library is fully generated from the Plaid OpenAPI spec.
If you find an issue, please investigate whether it is a type problem with OpenAPI or a problem with the java generator. Then open an issue and Plaid will investigate further.
- To build the docker image for the client tests, run
docker build -t plaid-java .
. - Go to the Plaid Dashboard and copy and paste your
client_id
and sandboxsecret
into the following command. - Run
docker run --rm -e PLAID_CLIENT_ID=$CLIENT_ID -e PLAID_SECRET=$SECRET plaid-java
.
If you wish to run a single test, edit the Dockerfile
CMD and add a parmeter like so: CMD ["mvn", "-Dit.test=IdentityGet*", "-Dmaven.javadoc.skip=true", "verify", "-e"]
Then rebuild the docker image using the command from step 1.