Jonathan Hart
Committed by Gerrit Code Review

Exclude tools/package/maven-plugin from obs

because it is not linked in to the build tree.

Change-Id: I455a4d652e320f5c2e8bddb55cd3645aa54e0691
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
5 5
6 # TODO: figure out a more elegant way of ignoring disconnected projects 6 # TODO: figure out a more elegant way of ignoring disconnected projects
7 projects=$(find $ONOS_ROOT -name '*.java' \ 7 projects=$(find $ONOS_ROOT -name '*.java' \
8 - -not -path '.git/*' -and -not -path '*/archetypes/*' -and -not -path '*/foo/*' -and -not -path '*/grouphandler/*' \ 8 + -not -path '.git/*' -and -not -path '*/archetypes/*' -and -not -path '*/grouphandler/*' -and -not -path '*/maven-plugin/*' \
9 -exec $ONOS_ROOT/tools/dev/bin/onos-build-selective-hook {} \; | \ 9 -exec $ONOS_ROOT/tools/dev/bin/onos-build-selective-hook {} \; | \
10 sort -u | sed "s:$ONOS_ROOT::g" | tr '\n' ',' | \ 10 sort -u | sed "s:$ONOS_ROOT::g" | tr '\n' ',' | \
11 sed 's:/,:,:g;s:,/:,:g;s:^/::g;s:,$::g') 11 sed 's:/,:,:g;s:,/:,:g;s:^/::g;s:,$::g')
......