With this set as the compiler config script, organize imports results in the addition of the synthetic import to the source.
withConfig(configuration) {
imports {
staticStar 'java.util.concurrent.TimeUnit'
}
}
Organize imports on:
results in:
import static java.util.concurrent.TimeUnit.*
class C {
}