Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asdf-community/asdf-scala
Scala plugin for the asdf version manager
https://github.com/asdf-community/asdf-scala
asdf asdf-plugin
Last synced: 28 days ago
JSON representation
Scala plugin for the asdf version manager
- Host: GitHub
- URL: https://github.com/asdf-community/asdf-scala
- Owner: asdf-community
- License: apache-2.0
- Created: 2016-12-12T20:14:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-13T23:41:56.000Z (4 months ago)
- Last Synced: 2024-09-14T13:50:50.230Z (4 months ago)
- Topics: asdf, asdf-plugin
- Language: Shell
- Homepage: https://github.com/asdf-vm/asdf
- Size: 20.5 KB
- Stars: 22
- Watchers: 5
- Forks: 14
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# asdf-scala
This is Scala plugin for asdf version manager.
Install script was adapted from https://github.com/smashedtoatoms/asdf-scala/blob/master/bin/install# Dependencies
To run Scala, you need to have a working Java install (either Oracle's or OpenJDK).
# Install
Plugin:
```shell
asdf plugin add scala
# or
asdf plugin add scala https://github.com/asdf-community/asdf-scala
```scala:
```shell
# Show all installable versions
asdf list-all scala# Install specific version
asdf install scala latest# Set a version globally (on your ~/.tool-versions file)
asdf global scala latest# Now scala commands are available
scala -help
```