Questions tagged [gvm]

GVM is a tool for managing parallel Versions of multiple Software Development Kits on most Unix based systems.

Taken from the GVM website:

GVM is a tool for managing parallel Versions of multiple Software Development Kits on most Unix based systems. It provides a convenient command line interface for installing, switching, removing and listing Candidates.

GVM was inspired by the highly useful RVM and rbenv tools, used at large by the Ruby community.

Candidates that are currently supported are:

  • Groovy
  • Grails
  • Griffon
  • Gradle
  • Groovyserv
  • Lazybones
  • Vert.x
  • Crash
  • Glide
  • Gaiden
  • JBake
  • Spring Boot

This list will grow beyond Groovy candidates.

45 questions
0
votes
2 answers

GVM Error Setting Default Groovy Version

I installed groovy with GVM: gvm install groovy But when I say yes to the set 2.4.6 as default version, I get this error: rm: `/c/Users//.sdkman/candidates/groovy/current' is a directory ln:…
Andrew Hummel
  • 400
  • 2
  • 5
  • 22
0
votes
1 answer

Ansible GVM - Go Version Manager

Writing my first Ansible Script. I am trying to install GVM. I install GVM ok (I logged into the box and checked) when I run gvm version on the box direct I get: Go Version Manager v1.0.22 installed at /d1/golang/gvm But when I run it as a command…
Elliot Reeve
  • 901
  • 4
  • 21
  • 39
0
votes
1 answer

Location of gvm command?

I have GVM (Groovy enVironment Manager) installed on my linux system. I can use the gvm command but which gvm OR alias gvm produce no results! So, it is neither in path nor an alias. Where is it located? How is it interpreted as command by the…
Champ
  • 1,291
  • 4
  • 16
  • 32
0
votes
0 answers

grails 3.0.1 gradle exceptions on OSX

I am just getting started with Grails 3.0.1 installed on OSX Yosemite using latest GVM. A simple create app is yielding a grails application under which the grails CLI exceptions out. Here are my steps: mybox:grails-apps me$ gvm version Groovy…
Bill Pfeiffer
  • 926
  • 8
  • 20
0
votes
1 answer

Building Grails App Using Gradle

I'm trying to build a Grails app using Gradle by calling the grails executable directly (instead of using any plugins/wrappers). I'd rather not lose the ability to use BuildConfig.groovy so I figured this would work. It works fine using windows…
Todd Sharp
  • 3,207
  • 2
  • 19
  • 27
0
votes
1 answer

couldn't find launch groovy command on terminal after installing it with gvm

I just installed groovy with gvm gvm install groovy and then restarted the terminal I had a grails installation before that using gvm and I get the grails version when I issue the command gvm current Now I can't run groovy or groovyconsole from…
Merhawi Fissehaye
  • 2,482
  • 2
  • 25
  • 39
0
votes
1 answer

installing gvm in cygwin using proxy

I have tried all the answers provided in Installing GVM using Cygwin - Proxy Issues to no avail. I have tried other variations as well. Not sure what I might be missing. Console below. Password in tics for special characters. Ideas? [~]$curl -v -x…
Bill Turner
  • 869
  • 1
  • 13
  • 27
0
votes
0 answers

Weird interaction between gvm, .profile and lightdm Ubuntu 14.10

Good morning everyone, I have a strange interaction problem between gvm, my .profile and lightdm on Ubuntu 14.10. The line that gvm puts at the end of .profile looks like this: [[ -s "/home/clh/.gvm/bin/gvm-init.sh" ]] && source…
MonetsChemist
  • 165
  • 10
0
votes
3 answers

gvm setting GOPATH in ubuntu 14.04

I installed gvm with go1.3, what next? I'm trying to build Revel, but I have the error: can't load package: package github.com/robfig/revel/cmd: cannot find package "github.com/robfig/revel/cmd" in any of: …
cnaize
  • 3,139
  • 5
  • 27
  • 45
0
votes
2 answers

gvm `The program 'go' is currently not installed`

I just installed gvm with go1.3, but when I try to go version I have The program 'go' is currently not installed message. How to fix this?
cnaize
  • 3,139
  • 5
  • 27
  • 45
0
votes
1 answer

ERROR plugins.DefaultGrailsPluginManager after upgrading to 2.3.3

I upgrade my project using the following commands : ~$ gvm install grails 2.3.3 ~$ gvm use grails 2.3.3 ~$ cd myproject myproject$ grails upgrade --force myproject$ grails refresh-dependencies myproject$ grails…
Abdennour TOUMI
  • 87,526
  • 38
  • 249
  • 254
0
votes
1 answer

GVM returns error when running in bash script

I am running an installation script to install Grails on new machines with GVM. #!/bin/bash set -e source "/Users/mecca831/.gvm/bin/gvm-init.sh" echo "Install grails" gvm install grails 2.1.1 GVM returns 1 in this case, which breaks my script.…
Ko-Chih Wu
  • 682
  • 7
  • 11
-1
votes
2 answers

How to execute Groovy script in PHP

I'm trying to execute a command through shell_exec in php. But I'm getting an error. My code : shell_exec('groovy log_analyser1.groovy'). But I'm getting this error : sh: groovy: command not found
arjun arjun
  • 28
  • 1
  • 8
1 2
3