I’m trying to get a multimodule project building, and it uses gwt. For this reason, I need to build one module but have the source of other modules on the classpath (the other modules have bits that the main gwt client module wants to use). How do I reference the sourceSet of another project? I was thinking I would end up doing something like
dependencies {
compile project(’:two’).sourceSet
}
but that (of course?) doesn’t work. I’m using the gradle-gwt-plugin from https://github.com/desource/gradle-gwt-plugin ; is there something else I should be using?