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.7.0"

(New and Noteworthy)
Line 18: Line 18:
 
</pluginRepositories>
 
</pluginRepositories>
 
</source>
 
</source>
 +
-->
  
 
== Staging build ==
 
== Staging build ==
Line 27: Line 28:
 
   <pluginRepository>
 
   <pluginRepository>
 
     <id>tycho-staged</id>
 
     <id>tycho-staged</id>
     <url>TODO</url>
+
     <url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-1060/</url>
 
   </pluginRepository>
 
   </pluginRepository>
 
</pluginRepositories>
 
</pluginRepositories>
Line 36: Line 37:
 
   
 
   
 
Refer to the [https://ci.eclipse.org/tycho/job/tycho-sitedocs/ws/target/staging/index.html latest SNAPSHOT site docs for Tycho] and [https://ci.eclipse.org/tycho/job/tycho.extras-sitedocs/ws/target/staging/index.html Tycho Extras].
 
Refer to the [https://ci.eclipse.org/tycho/job/tycho-sitedocs/ws/target/staging/index.html latest SNAPSHOT site docs for Tycho] and [https://ci.eclipse.org/tycho/job/tycho.extras-sitedocs/ws/target/staging/index.html Tycho Extras].
-->
 
  
 
[[Category:Tycho|Release Notes/1.7]]
 
[[Category:Tycho|Release Notes/1.7]]

Revision as of 03:51, 7 April 2020


Staging build

Tycho 1.7.0 is currently staged for release. To try out the release candidate, 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.7.0.

<pluginRepositories>
  <pluginRepository>
    <id>tycho-staged</id>
    <url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-1060/</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 1.7.0-SNAPSHOT

Removed Java 13 EE definition

With the release of Java 14, Java 13 is EOL so Tycho no longer publish profile for it.

JUnit 5.5.1 support

Tycho Surefire gained support for running tests with JUnit 5.4+ (bundles version 5.5.1).

Updated dependencies

  • Apache Commons Compress - 1.20
  • Ecj - 3.21.0
  • JGit - 5.7.0
  • Equinox (OSGi runtime and p2) - versions from Eclipse SDK 4.15
  • Plexus Archiver - 4.2.2
  • Polyglot Maven - 0.4.4

Reduced dependencies

Test dependencies are properly marked as such so they don't pollute runtime.

Thread safe MOJOs

As a first step towards parallel support in Tycho all MOJOs are marked threadSafe but synchronize on local object for extra safety. bug 548849

Back to the top