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

m
m
Line 5: Line 5:
 
<div id="versionNav" class="alert alert-small alert-warning">[[Tycho/Release Notes/1.0.0|&lt; Previous Version]] | Next Version &gt;</div>  
 
<div id="versionNav" class="alert alert-small alert-warning">[[Tycho/Release Notes/1.0.0|&lt; Previous Version]] | Next Version &gt;</div>  
  
== SNAPSHOT builds ==
+
== Staged release ==
  
Tycho 1.1.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. <tt>tycho-version</tt>) to <tt>1.1.0-SNAPSHOT</tt>.
+
Tycho 1.1.0 is staged for release. To try it out, simply add the following snippet to your (parent) pom.xml or settings.xml, and set the property for the Tycho version (e.g. <tt>tycho-version</tt>) to <tt>1.1.0</tt>.
 
 
 
<pre>
 
<pre>
 
<pluginRepositories>
 
<pluginRepositories>
 
   <pluginRepository>
 
   <pluginRepository>
     <id>tycho-snapshots</id>
+
     <id>tycho-1.1.0-staged</id>
     <url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
+
     <url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-1046/</url>
 
   </pluginRepository>
 
   </pluginRepository>
 
</pluginRepositories>
 
</pluginRepositories>
 
</pre>
 
</pre>
  
=== SNAPSHOT site docs ===
 
  
Refer to the [https://hudson.eclipse.org/tycho/job/tycho-sitedocs/ws/target/staging/index.html latest SNAPSHOT site docs for Tycho] and [https://hudson.eclipse.org/tycho/job/tycho.extras-sitedocs/ws/target/staging/index.html Tycho Extras].
 
  
 
== New and Noteworthy ==
 
== New and Noteworthy ==

Revision as of 05:54, 26 January 2018

< Previous Version | Next Version >

Staged release

Tycho 1.1.0 is staged for release. To try it out, 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 1.1.0.

<pluginRepositories>
   <pluginRepository>
     <id>tycho-1.1.0-staged</id>
     <url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-1046/</url>
   </pluginRepository>
</pluginRepositories>


New and Noteworthy

Complete list of bug fixes and enhancements in 1.1.0

Java 9

Compiler

  • the JDT compiler shipped with Tycho has been updated to Photon M4
  • Compilation both using Java 9 as well as using Java 8 but compiling against Java 9 ( with useJDK=BREE) is supported now (bug 514471)
  • Changes for useJDK=BREE:
    • Usage of a JRE directory JAVA_HOME/jre in toolchains.xml is still supported but deprecated in favour of simply using JAVA_HOME. In particular, JAVA_HOME is expected by other maven plugins integrated with toolchains.xml


Packaging

  • plexus-archiver was updated to version 3.4 (bug 514119)
  • commons-compress was updated to version 1.15 (bug 514119)

p2

  • Tycho's embedded OSGi runtime has been updated to use Equinox and p2 from Oxygen.2 (bug 519040)

Release and Versioning

Back to the top