https://github.com/department-of-veterans-affairs/Leo
Revision f4a3f4b5179213111e79995ce47f26843930413b authored by Thomas Ginter on 27 April 2016, 19:02:09 UTC, committed by Thomas Ginter on 27 April 2016, 19:02:09 UTC
1 parent 95d94b9
Raw File
Tip revision: f4a3f4b5179213111e79995ce47f26843930413b authored by Thomas Ginter on 27 April 2016, 19:02:09 UTC
removed unused leo-regex testing dependency which was causing groovy import errors
Tip revision: f4a3f4b
convert.sh
# A Shell script to help with the conversion from Flap to Leo
find . -name '*.java' -print | xargs perl -p -i -e 's/gov.va.vinci.flap/gov.va.vinci.leo/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/gov.va.vinci.marian/gov.va.vinci.leo/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/FlapAEDescriptor/LeoAEDescriptor/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/FlapDeployDescriptor/LeoDeployDescriptor/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/FlapTypeSystemDescription/LeoTypeSystemDescription/g'
find . -name '*.java' -print | xargs perl -p -i -e 's/MarianBaseAnnotator/LeoBaseAnnotator/g'
back to top