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

m
Line 25: Line 25:
  
 
[https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Tycho&query_format=advanced&resolution=FIXED&target_milestone=0.23.0&order=bug_id&query_based_on= Complete list of bug fixes and enhancements in 0.23.0]
 
[https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Tycho&query_format=advanced&resolution=FIXED&target_milestone=0.23.0&order=bug_id&query_based_on= Complete list of bug fixes and enhancements in 0.23.0]
 +
 +
=== Test Execution ===
 +
 +
* (INCOMPATIBLE CHANGE) The tycho-surefire property <tt>testSuite</tt> had been removed. If you are building a multi-bundle project and had set the <tt>testSuite</tt> and <tt>testClass</tt> property on the CLI or in a parent pom, you have to set the property <tt>failIfNoTests</tt> to <tt>false</tt>. If you had specified <tt>testSuite</tt> and <tt>testClass</tt> in the pom file of the plugin the <tt>testsClass</tt> belongs to, you just have to remove the <tt>testSuite</tt> property ([https://bugs.eclipse.org/bugs/show_bug.cgi?id=453526 <strike>bug 453526</strike>]).
  
 
[[Category:Tycho|Release Notes/0.23]]
 
[[Category:Tycho|Release Notes/0.23]]

Revision as of 03:39, 5 December 2014

< Previous Version | Next Version >

SNAPSHOT builds

To try out the most recent snapshot build of 0.23.0, 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 0.23.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 and Tycho Extras.

New and Noteworthy

Complete list of bug fixes and enhancements in 0.23.0

Test Execution

  • (INCOMPATIBLE CHANGE) The tycho-surefire property testSuite had been removed. If you are building a multi-bundle project and had set the testSuite and testClass property on the CLI or in a parent pom, you have to set the property failIfNoTests to false. If you had specified testSuite and testClass in the pom file of the plugin the testsClass belongs to, you just have to remove the testSuite property (bug 453526).

Back to the top