-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtoolchains.xml
More file actions
51 lines (51 loc) · 1.38 KB
/
toolchains.xml
File metadata and controls
51 lines (51 loc) · 1.38 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!-- Copy this file to ~/.m2/toolchains.xml and adjust according to your JRE locations to
give your Maven / Tycho installation knowledge of how to resolve the different
execution environments.
-->
<toolchains>
<!-- JDK toolchains -->
<toolchain>
<type>jdk</type>
<provides>
<version>8</version>
<id>JavaSE-1.8</id>
<vendor>sun</vendor>
</provides>
<configuration>
<jdkHome>/opt/sapjvm_8/jre</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<version>1.8</version>
<id>JavaSE-1.8</id>
<vendor>sun</vendor>
</provides>
<configuration>
<jdkHome>/opt/sapjvm_8/jre</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<version>11</version>
<id>JavaSE-11</id>
<vendor>sun</vendor>
</provides>
<configuration>
<jdkHome>/usr/lib/jvm/java-11-openjdk-amd64</jdkHome>
</configuration>
</toolchain>
<toolchain>
<type>jdk</type>
<provides>
<version>17</version>
<id>JavaSE-17</id>
<vendor>sun</vendor>
</provides>
<configuration>
<jdkHome>/usr/lib/jvm/sapmachine-jdk-17.0.10</jdkHome>
</configuration>
</toolchain>
</toolchains>