jiakuan / gwt-gradle-plugin

Gradle plugin to support GWT related tasks.
https://gwt-gradle.docstr.org
Other
63 stars 34 forks source link

Support for multimodule project #15

Open shabunc opened 6 years ago

shabunc commented 6 years ago

In the project from which one this particular project has been forked there was an issue with supporting multimodule gwt project (one where something in *.gwt.xml declaration inherits from different module).

up to that moment there was no solution other then explicitly add all gwt dependencies to the classpath which is non-ideal solution because it's defied the sole purpose of declaring dependencies.

just wonder has anything changed since then regarding this particular problem?

jiakuan commented 6 years ago

No I don’t think there are any changes in this regard.

In Gradle multiple-project structure, I normally use the project dependency configuration and didn’t see any problems. Perhaps I didn’t understand this issue properly.

Is there a sample project to play with?

gkresic commented 6 years ago

Maybe at least add to examples that equivalent of

evaluationDependsOn(':example-library')

is required in top level project, or otherwise gwt declaration won't be evaluated properly. @shabunc mentioned that in comment on above issue.