VueGWT / vue-gwt

Vue.js Components/Custom Elements in Java with GWT. Developed at https://www.genmymodel.com.
https://vuegwt.github.io/vue-gwt/
MIT License
204 stars 46 forks source link

fixes nashorn NPE #64

Closed ckemmler closed 5 years ago

ckemmler commented 5 years ago

On my setup (mac, various jdks, intellij,...), line 29 of VueTemplateCompiler, which tries to get hold of the nashorn interpreter, was returning null on me. Changing it to engine = (NashornScriptEngine) new NashornScriptEngineFactory().getScriptEngine(); fixed it. Plus, inexplicably, there was a missing dependency (a recent version of the javax.annotations library).