https://github.com/department-of-veterans-affairs/Leo
Revision 1555ccf7b8aae9046901e1854541bd46c33f3161 authored by Thomas Ginter on 08 April 2016, 22:51:06 UTC, committed by Thomas Ginter on 08 April 2016, 22:51:06 UTC
1 parent c0725fc
Raw File
Tip revision: 1555ccf7b8aae9046901e1854541bd46c33f3161 authored by Thomas Ginter on 08 April 2016, 22:51:06 UTC
Added testing for BaseFileCollectionReader and the LeoDeployDescriptor. We are tantalizingly close to 80% overall, currently 79.6%
Tip revision: 1555ccf
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