Skip to content

Instantly share code, notes, and snippets.

@rppowell-lasfs
Last active October 25, 2021 17:39
Show Gist options
  • Save rppowell-lasfs/c09c410a5921e71589fb6d62d210ac23 to your computer and use it in GitHub Desktop.
Save rppowell-lasfs/c09c410a5921e71589fb6d62d210ac23 to your computer and use it in GitHub Desktop.
Griffon Notes

My notes on installing/developing/using griffon - http://griffon-framework.org/

Griffon 1.5.0

There is an older griffon at 1.5.0 and a more recent one, version 2.8.0+.

Windows

Installing on windows

Java JDK

  • install jdk
  • set JAVA_HOME
  • add to path

Babun - a windows shell you will love

Install from: http://babun.github.io/

sdkman - The Software Development Kit Manager

Install from: http://sdkman.io/

Griffon 1.5.0

sdk install griffon

Griffon 1.5.0 plugins

Download old plugins from http://griffon-framework.org/portal-storage/

Example:

griffon install-plugin http://griffon-framework.org/portal-storage/packages/plugin/glazedlists/2.0.0/griffon-glazedlists-2.0.0.zip

http://stackoverflow.com/questions/39350571/griffon-1-5-project-unable-to-resolve-dependencies/39366796#39366796

Griffon (latest / 2+)

Windows

Installing on windows

Java JDK

  • install jdk
  • set JAVA_HOME
  • add to path

Babun - a windows shell you will love

Install from: http://babun.github.io/

sdkman - The Software Development Kit Manager

Install from: http://sdkman.io/

gradle

sdk install gradle

lazybones

sdk install lazybones

Register the griffon-lazybones-templates by editing $USER_HOME/.lazybones/config.groovy and adding the following:

bintrayRepositories = [
    "griffon/griffon-lazybones-templates",
    "pledbrook/lazybones-templates"
]
@gvorster
Copy link

gvorster commented Dec 1, 2016

I installed Babun on Windows 7. I had to put config.groovy in /c/Users/myusername/.lazybones/config.groovy

@kansasSamurai
Copy link

Regarding 'sdk install gradle'... I was using cygwin on Windows10. After getting failure error, a google search revealed that 'curl' was using the native Windows10 version of curl. Had to use cygwin installer to install cygwin specific version of curl.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment