From 9774f8303bc950c06a00b10e45b3a7fbf74f4f31 Mon Sep 17 00:00:00 2001 From: Jeroen Laverman Date: Fri, 22 Jun 2018 14:29:35 +0200 Subject: [PATCH] Fix path of output files Signed-off-by: Jeroen Jan Laverman --- .3rd-party/listDeps.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.3rd-party/listDeps.sh b/.3rd-party/listDeps.sh index a86280e38..fb6b8be8c 100755 --- a/.3rd-party/listDeps.sh +++ b/.3rd-party/listDeps.sh @@ -11,12 +11,12 @@ cd .. # Provided and compile (excludes the test modules) mvn dependency:list -DexcludeGroupIds=org.eclipse -pl !org.eclipse.hawkbit:hawkbit-repository-test,!org.eclipse.hawkbit:hawkbit-dmf-rabbitmq-test -Dsort=true -DoutputFile=dependencies.txt -find . -name dependencies.txt|while read i; do cat $i;done|grep '.*:.*:compile'|sort|uniq > 3rd-dependencies/compile.txt -find . -name dependencies.txt|while read i; do cat $i;done|grep '.*:.*:provided'|sort|uniq > 3rd-dependencies/provided.txt +find . -name dependencies.txt|while read i; do cat $i;done|grep '.*:.*:compile'|sort|uniq > .3rd-party/compile.txt +find . -name dependencies.txt|while read i; do cat $i;done|grep '.*:.*:provided'|sort|uniq > .3rd-party/provided.txt # Test dependencies mvn dependency:list -DexcludeGroupIds=org.eclipse -Dsort=true -DoutputFile=dependencies.txt -find . -name dependencies.txt|while read i; do cat $i;done|grep '.*:.*:test'|sort|uniq > 3rd-dependencies/test.txt +find . -name dependencies.txt|while read i; do cat $i;done|grep '.*:.*:test'|sort|uniq > .3rd-party/test.txt # Cleanup temp files find . -name dependencies.txt|while read i; do rm $i;done