Closed noamt closed 11 years ago
Looks good, I will create a snapshot version tomorrow we can test with.
Cheers
Any updates on this? Is there anything I can do to help? I could really use this fix.
Sorry I was trying to use bintray to get a snapshot version I was having issues. I will work on this tonight sorry for the delay.
Yeah, no snapshot versions are allowed on Bintray :)
So that would be the problem not my configuration.
I have a snapshot at https://repo-beckje01.rhcloud.com/artifactory/grails-plugins-snapshot/ You may need to hit the url first to make sure the artifactory is running. It is working for me if you don't mind giving the snapshot build a test I will get this deployed to the plugin portal if it is fixing your problem.
Looks good!
Hey, I might need some help to set it up correctly. How do I reference the Snapshot and where? (I'm quite new to Grails. I assume it's an easy fix?)
I'm pretty sure that you can do it by adding to your BuildConfig.groovy
file's repositories section the line:
mavenRepo "https://repo-beckje01.rhcloud.com/artifactory/grails-plugins-snapshot"
And then just install normally.
That was definitely it. Thanks a lot!
Grails controller field values are accessed by the post-test closure replacement procedures. Noticeable during integration tests, controllers are injected with additional fields from classes such as CommonWebApi. Some of these fields (such as the application context) cannot be accessed outside a request context, so they throw an exception during the replacement procedure.
Solution: added an iteration filter so that values are retrieved only for property descriptors of type Closure