Questions tagged [griffon]

For questions relating to Griffon, client application platform that uses Groovy and Java.

Official page: http://griffon-framework.org/index.html

GitHub repository: https://github.com/griffon/griffon

149 questions
3
votes
2 answers

Netbeans 7.4 Griffon support

I'm new to Griffon. But I installed Grails and currently creating projects on Grails in NB7.4. Because there is a default option in NB7.4. Grails working smooth. Now(at this time of writing) in NB plugin portal there is a griffon plugin. But it…
Sudhakar Krishnan
  • 732
  • 1
  • 8
  • 27
3
votes
1 answer

Is there a simple way of adding griffon functionality to groovy?

I've been learning about groovy and it works nicely with eclipse via the eclipse groovy plugin. I've been informed that I should use griffon if I want to write desktop applications. Is it possible to add libraries/jars/etc to my groovy install so…
3
votes
2 answers

griffon programming error: unable to find class annotation

I am trying to get the hang of griffon/grails/groovy for a project. I get this error at compile time from my Test1Controller.groovy file: [griffonc] /home/ironmantis7x/griffon_projects/test1/griffon-app/controllers/test1/Test1Controller.groovy: 14:…
ironmantis7x
  • 807
  • 2
  • 23
  • 58
3
votes
1 answer

Build Griffon app for Windows and Linux

I am going to build desktop application for Windows and Linux both. I tried to use Swing with Java, but it's a bit too rough. Right now I have focused on the Griffon framework. Is it possible (I bet it is) to build application for Windows (exe file)…
hsz
  • 148,279
  • 62
  • 259
  • 315
2
votes
5 answers

Java SE framework and architecture?

Im Tryinig to create a networking Java SE application with a user-friendly interface, im so confused about the GUI library (Swing, SWT, JavaFX) and also about the architecture of the application (MVC, PureMVC) can any one, with experience, give me a…
imanis_tn
  • 1,150
  • 1
  • 12
  • 33
2
votes
1 answer

Why can IntelliJ IDEA resolve the classes but Groovy / Griffon cannot?

I'm working on a Griffon app, using IntelliJ, and I'm trying to use the dcm4che project libraries. I've managed to get IntelliJ's code editor to stop complaining about missing classes, but when I go to run the Griffon app, the compiler goes down in…
cdeszaq
  • 30,869
  • 25
  • 117
  • 173
2
votes
1 answer

Intellij does not recognize Griffon variables?

Hi there i am trying to learn more about Griffon, but using IntelliJ it seems that code completion is not correct and variables are not recognized. So i am surely doing something wrong. I have created a new Griffon project and various things are not…
Marco
  • 15,101
  • 33
  • 107
  • 174
2
votes
2 answers

Griffon dont create Eclipse .project and .classpath files

Griffon 0.9.2-beta-3 after exec "griffon create-app DemoConsole" cant find the .project, so cant import it into eclipse(sts). but the docs say that "Griffon automatically creates Eclipse .project and .classpath files for you", did i miss some…
atian25
  • 4,166
  • 8
  • 37
  • 60
2
votes
1 answer

Griffon Ormlite plugin configuration not picking up environment settings

For my griffon desktop client application I'm trying to write some tests involving OrmLite. I have configured OrmLite with a java configuration file using the configuration section of the griffon-ormlite plugin guide. What I'm trying to do is…
Magnavode
  • 53
  • 6
2
votes
1 answer

Griffon 2.7 Tutorial

Following the official tutorial on griffon-framework.org/tutorials/1_getting_started.html .. Installed lazybones / gradle .. Created the sample application as per tutorial .. Tried to run gradle build and get $ gradle run --info Starting…
user3914455
  • 257
  • 1
  • 10
2
votes
1 answer

Griffon 1.5 project , unable to resolve dependencies

I have an old(ish) griffon project (1.5) I have to maintain. I'm trying to install and run it on a new PC via griffon run_app but I'm getting a 'Some dependencies could not be resolved ' for some plugins .. -=MISSING =- ? installer-0.8 not found…
user3914455
  • 257
  • 1
  • 10
2
votes
1 answer

Griffon error Could not find property 'compileOnly' on configuration

I try to create a Griffon application as described at http://griffon-framework.org/tutorials/1_getting_started.html#_tutorial_1_2 Using: Gradle 2.9 lazybones 0.8.3 mvn 3.3.9 Entered: lazybones create griffon-swing-java sample Define value for…
A.W.
  • 2,858
  • 10
  • 57
  • 90
2
votes
1 answer

How to use Griffon Swingx plugin with IntelliJ?

I've setup a Griffon project using ItelliJ and trying to use SwingX componants in a view but I can't manage to make it work. My griffon-app/conf/BuildConfig.groovy looks like this: griffon.project.dependency.resolution = { inherits("global") {…
Augier
  • 352
  • 4
  • 14
2
votes
1 answer

Griffon : How to open a new window from main view?

I am new to griffon and trying to develop a griffon app. I want to open secondary window from main window. When the "next" button clicked the secondary window should be open. config.properties application.title = Installation…
rinjan
  • 550
  • 5
  • 19
2
votes
1 answer

Griffon Update Model and View From Controller

Hello I am new in Griffon Framework I want to add Login feature in my application. Follow are my model,view and controller: SignInModel.groovy @ArtifactProviderFor(GriffonModel) @griffon.transform.Validateable class SignInModel { @Bindable…
Piyush Chaudhari
  • 962
  • 3
  • 19
  • 41
1
2
3
9 10