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
I've been studying the Maven Compiler plugin for inspiration. They do matching of sources to classes to detect changes (comparing the timestamps between the two). But this is tougher to do in Groovy, given the source filenames don't have to match the compiled class name. I'm trying to come up with an alternative strategy for detecting whether recompilation is needed due to updated sources.
One option would be to save a list of source files and last modified timestamps, then check every source file for a newer timestamp than the timestamp saved. But I'm a little concerned about the performance of this approach.
No description provided.
The text was updated successfully, but these errors were encountered: