Dojo and Vaadin

We have another related application which uses Dojo and we are intending to use Vaadin and integrate both of them at the UI layer only. We want our Vaadin application to use the Dojo code developed by the other team. Is there an existing way or will I need to write an adapter which can read the Dojo code and convert it to something which Vaadin can understand.
I appreciate all the suggestions and ideas.

Thanks.

There is no easy solution. You might want to just wrap the dojo based parts as Vaadin custom widget. See
https://vaadin.com/book/-/page/gwt.html
.

I tried the other way where I developed a vaadin app and embedded that into an HTML file which also loads dojo and that worked. Let me try the custom widget way. I am still learning my way through developing vaadin applications.

Thanks a lot for the suggestion.