Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
find wink-itests -name "'pom.xml"' | xargs grep SNAPSHOT
find wink-itests -name '*.java' | xargs grep SNAPSHOT
find wink-assembly -name "'pom.xml"' | xargs grep SNAPSHOT

In each of these files, you'll find a tag like this:

...

Code Block
xml
xml
<version>1.1-incubating</version>

You can also use find and sed together to change the versions:

No Format

find wink-itests -name 'pom.xml' -type f -exec sed -i 's/1.0-incubating-SNAPSHOT/1.1-incubating-SNAPSHOT/g' {} \;
find wink-itests -name '*.java' -type f -exec sed -i 's/1.0-incubating-SNAPSHOT/1.1-incubating-SNAPSHOT/g' {} \;
find wink-assembly -name 'pom.xml' -type f -exec sed -i 's/1.0-incubating-SNAPSHOT/1.1-incubating-SNAPSHOT/g' {} \;

Important: commit these changes to SVN!

...