Vaadin 8 on Grails 3
  • Introduction
  • Project setup
    • Environment setup
      • Unix based systems
      • Windows
    • Creating Project
      • Command line
      • IntelliJ IDEA
    • Plugin Configuration
      • UI class
      • URL mapping
      • Production mode
      • Async support
      • Themes
      • SASS compilation
      • Widgetset compilation
      • Servlet class
      • Spring component scan
      • UI provider
      • Open session in view
    • Clean up
    • Best Practices
  • Database
    • GORM
      • Create Domain Model
      • Transactions
      • LazyInitializationException
      • Open Session In View I.
      • Open Session In View II.
      • Table Container
    • Groovy SQL
      • Create Sql Bean
      • Execute SQLs
    • MyBatis
      • MyBatis Configuration
      • Reading Data with MyBatis
    • JdbcTemplate
      • Create JdbcTemplate Beans
      • Using JdbcTemplate
    • Clean Up When Using Alternatives
  • UI
Powered by GitBook
On this page
  • Step 1
  • Step 2
  • Step 3

Was this helpful?

  1. Project setup
  2. Environment setup

Unix based systems

PreviousEnvironment setupNextWindows

Last updated 5 years ago

Was this helpful?

This section describes how to install Grails on Mac OS X and Linux. You will use to install all the requited tools.

Step 1

Install SdkMan with this command in your console: curl -s "https://get.sdkman.io" | bash.

Step 2

Open your console and install Gradle and Grails.

  • sdk install gradle

  • sdk install grails

Now you are done and you can proceed to another chapter about project creation.

Step 3

Test your installation. Run grails --version int your command line.

| Grails Version: 3.2.9
| Groovy Version: 2.4.10
| JVM Version: 1.8.0_131

If you face to any kind of issues, open for help with SdkMan.

http://sdkman.io/install.html
SdkMan