Versions Compared

Key

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

...

Create a new branch from a trunk - we will run a release process from the branch.
Check-out the branch and edit the top-level pom.xml.

Change:

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>

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

...