5

With nvm you can go like this to fall back on the system version if installed:

nvm use system

Is there anything similar for sdkman? either to turn off a single application (something like sdk use ant system or turn off sdkman completely

Alex028502
  • 3,486
  • 2
  • 23
  • 50

1 Answers1

4

sdkman's approach to use system versions is Local Versions.

You have to install a new version pointing to your system installation:

$ sdk install ant system /usr/lib/share/ant

Then use that version as any other sdkman candidate:

$ sdk use ant system
Gonzalo Matheu
  • 8,984
  • 5
  • 35
  • 58