somehow I don't think this will DWIM ``` ...
# gradle
x
somehow I don't think this will DWIM
Copy code
project.getConfigurations().all( conf -> {
            conf.resolutionStrategy( rs -> {
                rs.eachDependency( details -> {
                    String group = details.getTarget().getGroup();
                    if ( group.startsWith( "com.xenoterracide" ) ) {
                        rs.cacheChangingModulesFor( 1, TimeUnit.MINUTES );
                    }
                } );
            } );
        } );