URI:
       trepos.gradle - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       trepos.gradle (321B)
       ---
            1 allprojects {
            2     repositories {
            3         flatDir name:'flat', dirs:["S_DIR/.gradle/flatRepo"]
            4         if ('allow' == System.properties['build.network_access']) {
            5             mavenCentral()
            6             jcenter()
            7         } else {
            8             maven {
            9                 url "S_DIR/dependencies"
           10             }
           11         }
           12     }
           13 }