annotate zshrc-jdk @ 143:870bb3be824f

change version of JDK10
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 03 Sep 2018 13:11:19 +0200
parents 3dd5b3b873aa
children d6fba0677bff
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 #
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
2 # zshrc for handling different Maven versions
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"
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
7 local new_path=`removeFromPath "jdk"`
8b245298349a zsh environment - initial import
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
diff changeset
8 export JAVA_HOME=`/usr/bin/java-config-2 --select-vm=${jdkName} -O`
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
135
3dd5b3b873aa jdk9 is gone, hello jdk10
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 132
diff changeset
19 jdk10() {
143
870bb3be824f change version of JDK10
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 135
diff changeset
20 export JAVA_HOME=/opt/jdk-10.0.2
132
7f20ec5f5726 bugfix for the PATH generation when switching JDKs
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 131
diff changeset
21
7f20ec5f5726 bugfix for the PATH generation when switching JDKs
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 131
diff changeset
22 local new_path=`removeFromPath "jdk"`
131
e72a98823522 update the jdk support module
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 48
diff changeset
23 export PATH="${JAVA_HOME}/bin":"${new_path}"
e72a98823522 update the jdk support module
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 48
diff changeset
24 java -version
135
3dd5b3b873aa jdk9 is gone, hello jdk10
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 132
diff changeset
25 }