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
Our most recent sourcemap update (see gwtproject/tools@87db1e0) also fixed a TODO that the closure-compiler team no longer seems to consider a useful change. This looks to be as simple as dropping the first patch when rebasing to the next version.
In the meantime, this is just a marker for reverting extra dependencies for the RequestFactoryJarExtractor build task.
The text was updated successfully, but these errors were encountered:
GWT builds after updating the source maps jars have been showing some warnings while executing request factory tasks, this due to the fact that RequestFactoryExtractor is trying to recursively process classes from the build path and the recent sourcemaps classes in the new dependencies have some references to some google-auto annotations like @AutoValue (specifically the OriginalMapping class) but those are not present in the RequestFactoryExtractor task build path so they could not be loaded using the class-loader resulting in the warning we see in the build logs.
We can fix those warnings by either removing those references from the sourcemaps jars or by adding the missing classes to the build path, for example adding error_prone jars to the build path since it include those classes.
Our most recent sourcemap update (see gwtproject/tools@87db1e0) also fixed a TODO that the closure-compiler team no longer seems to consider a useful change. This looks to be as simple as dropping the first patch when rebasing to the next version.
In the meantime, this is just a marker for reverting extra dependencies for the RequestFactoryJarExtractor build task.
The text was updated successfully, but these errors were encountered: