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

m
(fix introduction; link to Igor's announcement of the snapshot build results; some formatting)
Line 1: Line 1:
Tycho 0.14.0 is in development. In order to try out 0.14.0-SNAPSHOT, Tycho currently needs to be [[Developing Tycho|built locally]]. (The CI build results are currently not available from any Maven repository; see [https://bugs.eclipse.org/bugs/show_bug.cgi?id=360628 bug 360628].)
+
Tycho 0.14.0 is currently in development. This page shows a preview of features which will be available in the 0.14.0 release.
  
 
[https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Tycho&query_format=advanced&resolution=FIXED&target_milestone=0.14.0&order=bug_id&query_based_on= List of bug fixes and enhancements in 0.14.0]  
 
[https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&product=Tycho&query_format=advanced&resolution=FIXED&target_milestone=0.14.0&order=bug_id&query_based_on= List of bug fixes and enhancements in 0.14.0]  
  
== SNAPSHOT builds  ==
+
== 0.14.0-SNAPSHOT versions ==
  
To try the most recent snapshot build of 0.14, simply add the following snippet to your (parent) pom.xml and set tycho version to 0.14.0-SNAPSHOT.  
+
Currently, there are no official snapshot versions of Tycho available (see [https://bugs.eclipse.org/bugs/show_bug.cgi?id=360628 bug 360628]).
 +
 
 +
As a workaround, [http://dev.eclipse.org/mhonarc/lists/tycho-dev/msg00421.html Sonatype Inc.] provides an additional CI build of the Tycho sources and makes that result available in [https://oss.sonatype.org/content/groups/public/ this Maven repository]. To use this CI build result, add the following snippet to your (parent) POM and set Tycho version to 0.14.0-SNAPSHOT.  
 
<pre>&lt;pluginRepositories&gt;
 
<pre>&lt;pluginRepositories&gt;
 
   &lt;pluginRepository&gt;
 
   &lt;pluginRepository&gt;
Line 13: Line 15:
 
&lt;/pluginRepositories&gt;
 
&lt;/pluginRepositories&gt;
 
</pre>  
 
</pre>  
== New and Noteworthy  ==
 
  
*Tycho:
+
== New and Noteworthy  ==
**Full support for bundle runtime execution environments
+
***List of accessible system packages of bundle runtime execution environment is now respected during project dependency resolution and java compilation. This makes sure that bundles do not accidentally reference JRE classes that may not be available in all runtime environments supported by the bundles.
+
***If bundle project supports multiple runtime execution environments, Tycho will use the list of packages from the most restricted environment by default. Build target execution environment can be specified explicitly using new &lt;executionEnvironment&gt; target platform configuration parameter. For backwards compatibility with PDE, jre.compilation.profile build.properties property is supported too.
+
***Additionally, tycho-compiler-plugin can be configured to use different JDK libraries for different bundle runtime execution environment. Additional JDKs are configured using Maven [http://maven.apache.org/guides/mini/guide-using-toolchains.html toolchains.xml], where toolchain id element is matched to execution environment profile name. For example
+
  
 +
*Full support for bundle runtime execution environments
 +
**List of accessible system packages of bundle runtime execution environment is now respected during project dependency resolution and java compilation. This makes sure that bundles do not accidentally reference JRE classes that may not be available in all runtime environments supported by the bundles.
 +
**If bundle project supports multiple runtime execution environments, Tycho will use the list of packages from the most restricted environment by default. Build target execution environment can be specified explicitly using new &lt;executionEnvironment&gt; target platform configuration parameter. For backwards compatibility with PDE, jre.compilation.profile build.properties property is supported too.
 +
**Additionally, tycho-compiler-plugin can be configured to use different JDK libraries for different bundle runtime execution environment. Additional JDKs are configured using Maven [http://maven.apache.org/guides/mini/guide-using-toolchains.html toolchains.xml], where toolchain id element is matched to execution environment profile name. For example
 +
<pre>
 
  &lt;toolchains&gt;
 
  &lt;toolchains&gt;
 
   &lt;toolchain&gt;
 
   &lt;toolchain&gt;
Line 32: Line 34:
 
   &lt;/toolchain&gt;
 
   &lt;/toolchain&gt;
 
  &lt;/toolchains&gt;
 
  &lt;/toolchains&gt;
 +
</pre>
  
 
[[Category:Tycho|Release Notes/0.14]]
 
[[Category:Tycho|Release Notes/0.14]]

Revision as of 12:25, 21 December 2011

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

List of bug fixes and enhancements in 0.14.0

0.14.0-SNAPSHOT versions

Currently, there are no official snapshot versions of Tycho available (see bug 360628).

As a workaround, Sonatype Inc. provides an additional CI build of the Tycho sources and makes that result available in this Maven repository. To use this CI build result, add the following snippet to your (parent) POM and set Tycho version to 0.14.0-SNAPSHOT.

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

New and Noteworthy

  • Full support for bundle runtime execution environments
    • List of accessible system packages of bundle runtime execution environment is now respected during project dependency resolution and java compilation. This makes sure that bundles do not accidentally reference JRE classes that may not be available in all runtime environments supported by the bundles.
    • If bundle project supports multiple runtime execution environments, Tycho will use the list of packages from the most restricted environment by default. Build target execution environment can be specified explicitly using new <executionEnvironment> target platform configuration parameter. For backwards compatibility with PDE, jre.compilation.profile build.properties property is supported too.
    • Additionally, tycho-compiler-plugin can be configured to use different JDK libraries for different bundle runtime execution environment. Additional JDKs are configured using Maven toolchains.xml, where toolchain id element is matched to execution environment profile name. For example
 <toolchains>
  <toolchain>
     <type>jdk</type>
     <provides>
         <id>J2SE-1.5</id>
     </provides>
     <configuration>
        <jdkHome>/path/to/jdk/1.5</jdkHome>
     </configuration>
  </toolchain>
 </toolchains>

Back to the top