Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

STP version update script

The following script will update all stp plugins from 0.6.0 to 0.7.0. Run it under stp root dir

find . \( -name "*.xml" -or -name "*.MF" -or -name "*.properties" \) | xargs grep -F -l 0.6.0 | xargs sed -i -e 's/0.6.0/0.7.0/g'

Back to the top