forked from b2ihealthcare/snow-owl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolchains.xml
32 lines (32 loc) · 832 Bytes
/
toolchains.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF8"?>
<!-- IMPORTANT: toolchain works only with JRE not with JDK directories, define the JRE inside the JDK if you have JDK -->
<!-- JRE version requirements: Java7 u55, Java6 u31 -->
<toolchains>
<toolchain>
<type>jdk</type>
<provides>
<id>J2SE-1.5</id>
</provides>
<configuration>
<jdkHome>path/to/jre6</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<id>JavaSE-1.6</id>
</provides>
<configuration>
<jdkHome>path/to/jre6</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<id>JavaSE-1.7</id>
</provides>
<configuration>
<jdkHome>path/to/jre7</jdkHome>
</configuration>
</toolchain>
</toolchains>