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 "Tycho/Release Notes/2.3"

(Created page with "<css> #main-page-content{ position:relative; } #versionNav{ position:absolute; top: 0px; right: 0px; border-color: transparent; background: transparent; } </css> <div id="...")
 
(Add entry for "Enable reuse of workspace by tycho-eclipserun-plugin" (Bug 570477))
Line 46: Line 46:
 
   #versionNav{ position:absolute; top: 0px; right: 0px; border-color: transparent; background: transparent; }
 
   #versionNav{ position:absolute; top: 0px; right: 0px; border-color: transparent; background: transparent; }
 
</css>
 
</css>
 +
 +
=== Enable reuse of workspace by tycho-eclipserun-plugin ===
 +
 +
{{bug|570477}}, The <tt>tycho-eclipserun-plugin</tt> now has a configuration-parameter named <tt>clearWorkspaceBeforeLaunch</tt> to specify if the workspace should be cleared before running eclipse or not (default is <tt>true</tt>, matching the behavior until now). If the value is <tt>false</tt>, the workspace of the previous run is reused (if present), if the value is <tt>true</tt> the workspace-directory (i.e. the 'data' directory within the <tt>work</tt>-directory) and its content is deleted.
  
 
=== Noteworthy item 1 ===
 
=== Noteworthy item 1 ===
  
 
{{bug|123456}}, description
 
{{bug|123456}}, description

Revision as of 09:53, 21 January 2021

SNAPSHOT builds

Tycho 2.3.0-SNAPSHOT is currently in development. To try out the most recent snapshot build, simply add the following snippet to your (parent) pom.xml or settings.xml, and set the property for the Tycho version (e.g. tycho-version) to 2.3.0-SNAPSHOT.

<pluginRepositories>
    <pluginRepository>
      <id>tycho-snapshots</id>
      <url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
    </pluginRepository>
</pluginRepositories>

SNAPSHOT site docs

Refer to the latest SNAPSHOT site docs for Tycho.

New and Noteworthy

Complete list of bug fixes and enhancements in 2.3.0-SNAPSHOT

Enable reuse of workspace by tycho-eclipserun-plugin

bug 570477, The tycho-eclipserun-plugin now has a configuration-parameter named clearWorkspaceBeforeLaunch to specify if the workspace should be cleared before running eclipse or not (default is true, matching the behavior until now). If the value is false, the workspace of the previous run is reused (if present), if the value is true the workspace-directory (i.e. the 'data' directory within the work-directory) and its content is deleted.

Noteworthy item 1

bug 123456, description

Back to the top