You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
This builds fine, however does not recompile when I make a change to the Core project. The core jar rebuilds as expected, the GWT tasks all report "UP-TO-DATE".
I have tried adding src += files(project(':core').sourceSets.main.allJava.srcDirs) to the gwt component but this does not help either.
The text was updated successfully, but these errors were encountered:
I have used the following workaround: compileGwt.inputs.files(tasks.getByPath(":core:jar").outputs.files.getAsPath())
Basically, it adds the core jar as an input file dependency, this way, when a file in "core" is updated, the compileGwt recompiles afterwards.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have a project with two subprojects: GWT and Core. Core is a pure Java project which GWT relies upon. The GWT build.gradle looks like this:
This builds fine, however does not recompile when I make a change to the Core project. The core jar rebuilds as expected, the GWT tasks all report "UP-TO-DATE".
I have tried adding
src += files(project(':core').sourceSets.main.allJava.srcDirs)
to thegwt
component but this does not help either.The text was updated successfully, but these errors were encountered: