Hello, I am struggling a little bit with adding / deploying a javascript library as a UI component (in this case its a heavily modified creditor instance).
I have created the component a-ok and it works fine, when I include a javascript path like
@JavaScript({
"vaadin://ckeditor/ckeditor.js",
"vaadin://ckeditor/adapters/jquery.js", ... etc
It does NOT work if I include the ckeditor folder in my package under …/web/toolkit.ui.ckhtmleditor/
if I just put the following
@JavaScript({
"ckeditor/ckeditor.js",
"ckeditor/adapters/jquery.js", ... etc
My problem lies with how to deploy the application as an Uber Jar (or even a WAR for that matter) - I.e. how to get the ckeditor folder and all its related files included in the deployable package.
Any help would be greatly appreciated
Regards