Browse Source

Add Apache FileVault support.

pull/104/head
Will Tonkin 11 years ago
parent
commit
55a664b02d
  1. 17
      README.md
  2. 1
      available-plugins/vlt/etc/jenv.d/exec/vlt-before.bash
  3. 9
      available-plugins/vlt/etc/jenv.d/rehash/vlt.bash

17
README.md

@ -222,14 +222,15 @@ Jenv provides plugins to make command-line tools aware of which JDK is activated @@ -222,14 +222,15 @@ Jenv provides plugins to make command-line tools aware of which JDK is activated
$ jenv plugins
ant
golo
gradle
grails
groovy
lein
maven
sbt
scala
golo
gradle
grails
groovy
lein
maven
sbt
scala
vlt
Let's say you want Maven to use the JDK activated with Jenv, not the default `JAVA_HOME` configuration. You need to activate Jenv's maven plugin.

1
available-plugins/vlt/etc/jenv.d/exec/vlt-before.bash

@ -0,0 +1 @@ @@ -0,0 +1 @@
#Nothing specific

9
available-plugins/vlt/etc/jenv.d/rehash/vlt.bash

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
backuppath=$PATH
PATH="$(remove_from_path "${JENV_ROOT}/shims")"
VLT_BIN="$(command -v "vlt" || true)"
make_shims "$VLT_BIN"
PATH=$backuppath
Loading…
Cancel
Save