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

(Requires Java 11)
Line 43: Line 43:
 
[https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Tycho&query_format=advanced&target_milestone=2.0.0&order=bug_id&query_based_on= Complete list of bug fixes and enhancements in 2.0.0-SNAPSHOT]
 
[https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Tycho&query_format=advanced&target_milestone=2.0.0&order=bug_id&query_based_on= Complete list of bug fixes and enhancements in 2.0.0-SNAPSHOT]
  
=== Requires Java 11 ===
+
=== Java 11 ===
  
 
* Tycho now requires Java 11 as a minimum runtime requirement
 
* Tycho now requires Java 11 as a minimum runtime requirement
 
* The default execution environment (EE) for the tycho-eclipserun-plugin was also bumped to Java 11
 
* The default execution environment (EE) for the tycho-eclipserun-plugin was also bumped to Java 11
 +
* The default source and target settings for the tycho-compiler-plugin were also bumped to Java 11
  
 
=== Requires Maven 3.6.3 or more recent ===
 
=== Requires Maven 3.6.3 or more recent ===

Revision as of 08:14, 11 June 2020

< Previous Version | Next Version >

SNAPSHOT builds

Tycho 2.0.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.0.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 2.0.0-SNAPSHOT

Java 11

  • Tycho now requires Java 11 as a minimum runtime requirement
  • The default execution environment (EE) for the tycho-eclipserun-plugin was also bumped to Java 11
  • The default source and target settings for the tycho-compiler-plugin were also bumped to Java 11

Requires Maven 3.6.3 or more recent

Back to the top