annotate zshrc-jdk @ 156:2f71ba394858

update jdks
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 27 Sep 2019 10:11:01 +0200
parents 1a9d4664aafb
children 6dd02b1ebb80
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
1 #
152
62c9cbe45942 update JDK11 path
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 148
diff changeset
2 # zshrc for handling different JDK versions
0
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
3 #
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
4
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
5 switchJdk() {
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
6 local jdkName="$1"
153
aa8f422d55ae add openjdk8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 152
diff changeset
7 local new_path=$(removeFromPath "jdk")
aa8f422d55ae add openjdk8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 152
diff changeset
8 export JAVA_HOME=$(/usr/bin/java-config-2 --select-vm=${jdkName} -O)
0
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
9 export JAVAC=${JAVA_HOME}/bin/javac
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
10 export JDK_HOME=${JAVA_HOME}
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
11 export PATH="${JAVA_HOME}/bin":"${new_path}"
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
12 java -version
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
13 }
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
14
48
47174e41b448 add a switch for Java 8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 0
diff changeset
15 jdk8() {
47174e41b448 add a switch for Java 8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 0
diff changeset
16 switchJdk "oracle-jdk-bin-1.8"
47174e41b448 add a switch for Java 8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 0
diff changeset
17 }
131
e72a98823522 update the jdk support module
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 48
diff changeset
18
153
aa8f422d55ae add openjdk8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 152
diff changeset
19 openjdk8() {
156
2f71ba394858 update jdks
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 155
diff changeset
20 export JAVA_HOME=/opt/openjdk-bin-8.222_p10
153
aa8f422d55ae add openjdk8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 152
diff changeset
21
aa8f422d55ae add openjdk8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 152
diff changeset
22 local new_path=$(removeFromPath "jdk")
aa8f422d55ae add openjdk8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 152
diff changeset
23 export PATH="${JAVA_HOME}/bin":"${new_path}"
aa8f422d55ae add openjdk8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 152
diff changeset
24 java -version
aa8f422d55ae add openjdk8
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 152
diff changeset
25 }
155
1a9d4664aafb add openjdk12
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 154
diff changeset
26
1a9d4664aafb add openjdk12
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 154
diff changeset
27 openjdk12() {
156
2f71ba394858 update jdks
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 155
diff changeset
28 switchJdk "openjdk-bin-12"
2f71ba394858 update jdks
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 155
diff changeset
29 }
155
1a9d4664aafb add openjdk12
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 154
diff changeset
30
156
2f71ba394858 update jdks
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 155
diff changeset
31 openjdk13() {
2f71ba394858 update jdks
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 155
diff changeset
32 switchJdk "openjdk-bin-13"
155
1a9d4664aafb add openjdk12
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 154
diff changeset
33 }