From f1d5b10c5e9c7ca06c6077d97785597d8be214db Mon Sep 17 00:00:00 2001 From: Ernst-Christoph Schrewe Date: Thu, 28 Sep 2023 08:54:46 +0200 Subject: [PATCH] chore: added docs/dev.md with instructions on updating dependencies files --- backend/docs/dev.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 backend/docs/dev.md diff --git a/backend/docs/dev.md b/backend/docs/dev.md new file mode 100644 index 00000000..2d5c296d --- /dev/null +++ b/backend/docs/dev.md @@ -0,0 +1,12 @@ +## Keeping dependencies-files up to date +### Backend + +Navigate to the ./backend folder and run: +``` +mvn org.eclipse.dash:license-tool-plugin:license-check +cp DEPENDENCIES ../DEPENDENCIES_BACKEND +``` +The first line runs the maven license tool with the parameters specified in the +./backend/pom.xml and produces a DEPENDENCIES file in the ./backend folder. +Then this file gets copied to the PURIS-project root folder under the name DEPENDENCIES_BACKEND. +Both files should be updated prior to any pull request.