Versions Compared

Key

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

...

Edit the top pom.xml file and replace 2.x the url below with major.minor.x part of version number that's going to be released (eg. version is 2.3.10 -> 2.3.x) and rename development folder to release.

Before:
Code Block
xml
xml
    <distributionManagement>
        <site>
            <id>apache-site</id>
            <url>scp<url>scm:svn:https://peoplesvn.apache.org/www/struts.apache.org/2/repos/infra/websites/production/struts/content/development/2.x/</url>
        </site>
    </distributionManagement>
After:
Code Block
xml
xml

    <distributionManagement>
        <site>
            <id>apache-site</id>
            <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/struts/content/release/2.3.x/</url>
        </site>
    </distributionManagement>

...