xenoterracide
05/10/2018, 3:50 AMproject.getConfigurations().all( conf -> {
conf.resolutionStrategy( rs -> {
rs.eachDependency( details -> {
String group = details.getTarget().getGroup();
if ( group.startsWith( "com.xenoterracide" ) ) {
rs.cacheChangingModulesFor( 1, TimeUnit.MINUTES );
}
} );
} );
} );