Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Releasing Tycho"

Line 9: Line 9:
 
*Add your credentials for server &lt;OSS_ID&amp;gt; in <tt>~/.m2/settings.xml</tt>  
 
*Add your credentials for server &lt;OSS_ID&amp;gt; in <tt>~/.m2/settings.xml</tt>  
 
*Sync to release commit and deploy to nexus staging repository: <tt>mvn clean deploy -Prelease -DforgeReleaseId=&lt;OSS_ID&gt; -DforgeReleaseUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2/</tt>  
 
*Sync to release commit and deploy to nexus staging repository: <tt>mvn clean deploy -Prelease -DforgeReleaseId=&lt;OSS_ID&gt; -DforgeReleaseUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2/</tt>  
*Close the staging repository and announce the temporary stage URL on tycho-user@eclipse.org:<tt><br/>Subject:&nbsp;please test staged tycho &lt;VERSION&gt; <br/>Please help testing the staged tycho release &lt;VERSION&gt;. <br/>The staging repository URL is [1]. For details see release notes[2].<br/><br/> We plan to promote this release in one week unless major regressions are found.<br/>Regards,<br/>  Tycho team<br/> <br/>  [1] &lt;NEXUS_OSS_STAGING_URL&gt;<br/> [2] http://wiki.eclipse.org/Tycho/Release_Notes/&lt;VERSION&gt;</tt>
+
*Close the staging repository and announce the temporary stage URL on tycho-user@eclipse.org:<tt><br/>Subject:&nbsp;please test staged tycho &lt;VERSION&gt; <br/><br/>Please help testing the staged tycho release &lt;VERSION&gt;. <br/>The staging repository URL is [1]. For details see release notes[2].<br/><br/> We plan to promote this release in one week unless major regressions are found.<br/><br/>Regards,<br/>  Tycho team<br/> <br/>  [1] &lt;NEXUS_OSS_STAGING_URL&gt;<br/> [2] http://wiki.eclipse.org/Tycho/Release_Notes/&lt;VERSION&gt;</tt>
 
</pre>  
 
</pre>  
 
*Generate site docs using <tt>mvn clean install site site:stage</tt> and check the result in to [http://www.eclipse.org/tycho/sitedocs tycho homepage site docs]  
 
*Generate site docs using <tt>mvn clean install site site:stage</tt> and check the result in to [http://www.eclipse.org/tycho/sitedocs tycho homepage site docs]  

Revision as of 06:57, 9 October 2012

This page describes the steps necessary to create releases of the Tycho project.

  • Prepare the Tycho/Release Notes which should provide a quick overview of new features and bug fixes
  • Steps below apply to both tycho and tycho-extras git repositories as these should normally be released together and with the same version
  • Update versions using mvn org.eclipse.tycho:tycho-versions-plugin:set-version -DnewVersion=...
  • Commit version change, create a git tag tycho-<VERSION> on this commit and create a new remote branch tycho-MAJOR.MINOR.x based on this commit in git
  • Update versions (same as above) to next -SNAPSHOT development version and push commit to master branch
  • Make sure you have everything setup (GPG installed!) for deploying to the Nexus OSS repository, see guide
  • Add your credentials for server <OSS_ID&gt; in ~/.m2/settings.xml
  • Sync to release commit and deploy to nexus staging repository: mvn clean deploy -Prelease -DforgeReleaseId=<OSS_ID> -DforgeReleaseUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2/
  • Close the staging repository and announce the temporary stage URL on tycho-user@eclipse.org:
    Subject: please test staged tycho <VERSION>

    Please help testing the staged tycho release <VERSION>.
    The staging repository URL is [1]. For details see release notes[2].

    We plan to promote this release in one week unless major regressions are found.

    Regards,
    Tycho team

    [1] <NEXUS_OSS_STAGING_URL>
    [2] http://wiki.eclipse.org/Tycho/Release_Notes/<VERSION>

</pre>

Back to the top