Community
Participate
Working Groups
In the generated Workflow the value for runtimeProject and platformUri are relative paths. In the GrammarAccessFragment the value is interpreted as an URI and for the StandaloneSetup and other Fragments it's a path. The GrammarAccessFragment tries URI.createURI with something build of pathRtProject, which sounds like a path. Under Windows the path contains a "C:" which is interpreted as a protocol. The ParseTreeConstructorFragment tries new File with the same construct as GrammarAccessFragment uses. In this case and also for the StandaloneSetup and the generator it needs to be a path. You can see the Problem on windows, if you set a not relative path. This is neccessary in maven if you build modules for example.