On a java project using Antlr4 and String Template 4 can I get a STGroupFile from a resource contained in project's jar?
I made it works using the absolute path, like
STGroup gd = new STGroupFile("D:\\templates\\bbx.stg");
But I would like to have the .stg file inside the jar.
What am I missing?