-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[releng] Backport toolchains-hudson.xml
Change-Id: Ibb6cd1b587a9934b9c8ad77aa2f341b4f95dbdc1 Signed-off-by: Dénes Harmath <[email protected]>
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!-- | ||
This toolchains file provides a JDK relative homes as opposed to the default JRE-relative | ||
definitions available at hudson.eclipse.org. Should not be used outside of builds at hudson.eclipse.org. | ||
--> | ||
<toolchains> | ||
<toolchain> | ||
<type>jdk</type> | ||
<provides> | ||
<id>JavaSE-1.7</id> | ||
</provides> | ||
<configuration> | ||
<jdkHome>/opt/public/common/jdk1.7.0-latest</jdkHome> | ||
<bootClassPath> | ||
<includes> | ||
<include>jre/lib/*</include> | ||
<include>jre/lib/ext/*</include> | ||
<include>jre/lib/endorsed/*</include> | ||
</includes> | ||
</bootClassPath> | ||
</configuration> | ||
</toolchain> | ||
<toolchain> | ||
<type>jdk</type> | ||
<provides> | ||
<id>JavaSE-1.8</id> | ||
</provides> | ||
<configuration> | ||
<jdkHome>/opt/public/common/jdk1.8.0_x64-latest</jdkHome> | ||
<bootClassPath> | ||
<includes> | ||
<include>jre/lib/*.jar</include> | ||
<include>jre/lib/ext/*.jar</include> | ||
<include>jre/lib/endorsed/*.jar</include> | ||
</includes> | ||
</bootClassPath> | ||
</configuration> | ||
</toolchain> | ||
</toolchains> |