so I have created my first gradle plugin to help build modularized Jars and standalone applications using the Java Platform Module System. It all works rather nicely together when I call gradle from the comand line. But when I import a project into Eclipse using the Buildship plugin, all dependencies end up on the classpath.
I want to find out how to manipulate the module path, i.e. remove all the dependencies from the classpath (that’s the easy part IMHO) and add them to the module path instead.
It works in gradle, but I have to open project properties and manipulate the build path manually each time I run “Refresh Gradle Project”.