Versions Compared

Key

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

...

Code Block
xml
xml
<scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/wink/trunk</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/wink/trunk</developerConnection>
    <url>http://svn.apache.org/viewvc/incubator/wink/trunk</url>
</scm>

To (change the branch name appropriately):

Code Block
xml
xml
<scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/wink/branches/wink-1.1-incubating</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/wink/branches/wink-1.1-incubating</developerConnection>
    <url>http://svn.apache.org/viewvc/incubator/wink/branches/wink-1.1-incubating</url>
</scm>

...

Code Block
xml
xml
<version>1.1-incubating.0-SNAPSHOT</version>

If, for example, the target version is 1.1-incubating.0-SNAPSHOT, change the tag in each of the places found in your find commands to:

Code Block
xml
xml
<version>1.1-incubating<.0</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.1-incubating.0-SNAPSHOT/1.1-incubating.0/g' {} \;
find wink-itests -name '*.java' -type f -exec sed -i 's/1.1-incubating.0-SNAPSHOT/1.1-incubating.0/g' {} \;
find wink-assembly -name 'pom.xml' -type f -exec sed -i 's/1.1-incubating.0-SNAPSHOT/1.1-incubating.0/g' {} \;

Also read through and edit appropriate changes to the release_notes.txt and wink-assembly/wink-assembly-aggregatejar/DEPENDENCIES files.

...