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/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>

Currently the wink-itest and wink-assembly modules are not tied to the top-level pom. The pom.xml files under these modules will be missed by the Maven release plugin. We need to change them by hand.

To find the files that need to be hand-edited:

Code Block

find wink-itest -name "pom.xml" | 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.0-incubating-SNAPSHOT</version>

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

Code Block
xml
xml

<version>1.1-incubating</version>

From the branch, run the following maven command to prepare the project for the release:

...