vaadin / intellij-plugin

Vaadin IntelliJ Plugin
2 stars 0 forks source link

Improve Vaadin project detection #33

Open MarcinVaadin opened 2 months ago

MarcinVaadin commented 2 months ago

Currently there is simple String::contains search of com.vaadin inside pom.xml / build.gradle to detect Vaadin project. It might cause lot of false positives. For parsing pom.xml maven-model might be used. For gradle file there is gradle-tooling-api but it's bit more complex to use.

Also there is no multi module detection of Vaadin child projects.