Closed MarcinVaadin closed 1 month ago
Update:
On multimodule projects, root module might not contain Vaadin dependency - Vaadin plugin is not started.
Note that as part of the "Debug as hotswap", parsing of some build data for both Maven and Gradle were added so you can do e.g.
var deps: List<MavenArtifact> = MavenProjectsManager.getInstance(module.project).findProject(module)!!.dependencies
and also find a parent project
var parentId: MavenId = MavenProjectsManager.getInstance(module.project).findProject(module)!!.parentId!!;
MavenProjectsManager.getInstance(module.project).findProject(parentId)
Was this fixed by #82 ?
Yes
Currently there is simple
String::contains
search ofcom.vaadin
insidepom.xml
/build.gradle
to detect Vaadin project. It might cause lot of false positives. For parsing pom.xmlmaven-model
might be used. For gradle file there isgradle-tooling-api
but it's bit more complex to use.Also there is no multi module detection of Vaadin child projects.