1234567891011121314151617181920212223242526272829303132333435363738 |
- pluginManagement {
- repositories {
- maven { url 'https://maven.aliyun.com/repository/releases' }
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- maven { url 'https://maven.aliyun.com/repository/google' }
- maven { url 'https://maven.aliyun.com/repository/central' }
- maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
- maven { url 'https://maven.aliyun.com/repository/public' }
- maven { url 'https://mirrors.tencent.com/repository/maven/tencent_public' }
- maven { url "https://jitpack.io" }
- maven { url 'https://repo1.maven.org/maven2/' }
- google()
- mavenCentral()
- gradlePluginPortal()
- }
- }
- dependencyResolutionManagement {
- repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
- repositories {
- maven { url 'https://maven.aliyun.com/repository/releases' }
- maven { url 'https://maven.aliyun.com/repository/jcenter' }
- maven { url 'https://maven.aliyun.com/repository/google' }
- maven { url 'https://maven.aliyun.com/repository/central' }
- maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
- maven { url 'https://maven.aliyun.com/repository/public' }
- maven { url 'https://mirrors.tencent.com/repository/maven/tencent_public' }
- maven { url "https://jitpack.io" }
- maven { url 'https://repo1.maven.org/maven2/' }
- google()
- mavenCentral()
- gradlePluginPortal()
- }
- }
- rootProject.name = "efunboxModel"
- include ':app'
- include ':app-video'
- include ':app-pay'
- include ':app-base'
|