Is anyone lucky with the IntelliJ 14.0.2 and Groovy DSL descriptors (GDSL)?
We modeled our GDSL around the instructions here and here for IntelliJ 13 it worked like a charm. Upgrading to 14 and Groovy code completion no longer works. The documentation around this function is pretty rough, so we are partly from ideas.
Here is our current GDSL, which allow code completion in a script type thing.POST.groovy :
def all = context(pathRegexp: '/.*\\.[AZ]+\\.groovy', scope: scriptScope()) contributor(all) { property name: 'response', type: 'com.foo.HttpResponse' property name: 'request', type: 'com.foo.HttpRequest' }
This is in src/test/groovy/expectationTransform.gdsl . IntelliJ offers "Activate Back", but it seems to be doing nothing.
Stano source share