# HG changeset patch # User smith@nwoca.org # Date 1541428102 0 # Node ID b7b65152446ecada2b6f7a3c4ab143eee7fe3485 # Parent 7b699c240cebc4cc4ff170fe94d0bdbd7db063cd handle maven local as not-remote repo diff -r 7b699c240ceb -r b7b65152446e init20.gradle --- a/init20.gradle Fri Nov 02 16:21:16 2018 +0100 +++ b/init20.gradle Mon Nov 05 14:28:22 2018 +0000 @@ -513,7 +513,7 @@ } - def remoteRepos = thisProject.repositories.findAll { it.hasProperty('url') && !(it.name == 'local' || it.url.toString().contains('ssdt')) } + def remoteRepos = thisProject.repositories.findAll { it.hasProperty('url') && !(it.name.toLowerCase().contains('local') || it.url.toString().contains('ssdt')) } if (remoteRepos) { logger.warn "WARNING: Remote repositories configured for $thisProject:\n" + remoteRepos.collect { "\t$it.name $it.url " }.join('\n') + "\n Moved to lowest priority..." remoteRepos.each {