Skip to main content

Notice: This Wiki is now read only and edits are no longer 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.15"

m
m
Line 1: Line 1:
 
Tycho 0.15.0 is currently in development. This page shows a preview of features which will be available in the 0.15.0 release.  
 
Tycho 0.15.0 is currently in development. This page shows a preview of features which will be available in the 0.15.0 release.  
 +
 +
== SNAPSHOT builds ==
 +
 +
To try the most recent snapshot build of 0.15.0, simply add the following snippet to your (parent) pom.xml and set tycho version to 0.15.0-SNAPSHOT.
 +
 +
<pre>
 +
<pluginRepositories>
 +
  <pluginRepository>
 +
    <id>tycho-snapshots</id>
 +
    <url>https://oss.sonatype.org/content/groups/public/</url>
 +
  </pluginRepository>
 +
</pluginRepositories>
 +
</pre>
  
 
[https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Tycho&query_format=advanced&resolution=FIXED&target_milestone=0.15.0&order=bug_id&query_based_on= List of bug fixes and enhancements in 0.15.0]  
 
[https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Tycho&query_format=advanced&resolution=FIXED&target_milestone=0.15.0&order=bug_id&query_based_on= List of bug fixes and enhancements in 0.15.0]  

Revision as of 15:02, 26 April 2012

Tycho 0.15.0 is currently in development. This page shows a preview of features which will be available in the 0.15.0 release.

SNAPSHOT builds

To try the most recent snapshot build of 0.15.0, simply add the following snippet to your (parent) pom.xml and set tycho version to 0.15.0-SNAPSHOT.

<pluginRepositories>
  <pluginRepository>
    <id>tycho-snapshots</id>
    <url>https://oss.sonatype.org/content/groups/public/</url>
  </pluginRepository>
</pluginRepositories>

List of bug fixes and enhancements in 0.15.0

New and Noteworthy

  • Added configuration option for annotation processors to the JDT compiler (TODO document, see testcase
  • p2 repository archive name is now configurable via ${project.build.finalName}
    Note that the default archive name changed from ${project.artifactId}.zip to ${project.artifactId}-${project.version}.zip

Back to the top