Skip to content

Instantly share code, notes, and snippets.

@ujhelyiz
Created March 6, 2017 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ujhelyiz/2338f3346674c1328bca9466639fc11e to your computer and use it in GitHub Desktop.
Save ujhelyiz/2338f3346674c1328bca9466639fc11e to your computer and use it in GitHub Desktop.
Simple toolchains.xml used by Tycho
<toolchains>
<toolchain>
<type>jdk</type>
<provides>
<id>J2SE-1.5</id>
</provides>
<configuration>
<jdkHome>/opt/public/common/jdk1.5.0-latest/jre</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<id>JavaSE-1.6</id>
</provides>
<configuration>
<jdkHome>/opt/public/common/jdk1.6.0-latest/jre</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<id>JavaSE-1.7</id>
</provides>
<configuration>
<jdkHome>/opt/public/common/jdk1.7.0-latest/jre</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<id>JavaSE-1.8</id>
</provides>
<configuration>
<jdkHome>/opt/public/common/jdk1.8.0_x64-latest/jre</jdkHome>
</configuration>
</toolchain>
</toolchains>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment