Difference between revisions of "Grails"
From Blue-IT.org Wiki
(→Ubuntu) |
(→Environment) |
||
Line 1: | Line 1: | ||
== Environment == | == Environment == | ||
+ | |||
+ | |||
+ | |||
=== Ubuntu === | === Ubuntu === | ||
+ | == Ubuntu way == | ||
+ | [http://www.grails.org/Installation http://www.grails.org/Installation] | ||
+ | [http://www.grails.org/Download http://www.grails.org/Download] | ||
+ | |||
+ | sudo add-apt-repository ppa:groovy-dev/grails | ||
+ | sudo apt-get update | ||
+ | sudo apt-get install grails | ||
+ | |||
+ | #to add grails 2.0.0 M1 | ||
+ | sudo apt-get install grails-2.0.0 | ||
+ | |||
+ | #to add grails 1.2.5 | ||
+ | sudo apt-get install grails-1.2.5 | ||
+ | |||
+ | #switch between versions | ||
+ | sudo update-alternatives --config grails | ||
+ | |||
+ | That's it ! | ||
+ | |||
+ | Install java 1.6 and remove all openjdk packages (or at least be shure to run ''update-alternatives --config java''). | ||
+ | |||
+ | == Manual == | ||
+ | [http://www.grails.org/Installation http://www.grails.org/Installation] | ||
+ | [http://www.grails.org/Download http://www.grails.org/Download] | ||
Download an install grails into a directory. | Download an install grails into a directory. | ||
Revision as of 11:17, 30 July 2011
Contents
Environment
Ubuntu
Ubuntu way
http://www.grails.org/Installation http://www.grails.org/Download
sudo add-apt-repository ppa:groovy-dev/grails sudo apt-get update sudo apt-get install grails #to add grails 2.0.0 M1 sudo apt-get install grails-2.0.0 #to add grails 1.2.5 sudo apt-get install grails-1.2.5 #switch between versions sudo update-alternatives --config grails
That's it !
Install java 1.6 and remove all openjdk packages (or at least be shure to run update-alternatives --config java).
Manual
http://www.grails.org/Installation http://www.grails.org/Download Download an install grails into a directory.
Then edit your ~/.bashrc file or use export to set the variables in the running shell / environment:
export PATH="$PATH:/local/share/grails/bin" export JAVA_HOME="/usr/lib/jvm/java-6-sun" export GRAILS_HOME="/local/share/grails"