1234567891011121314151617181920212223242526272829303132333435 |
- pluginManagement {
- repositories {
- google()
- //noinspection JcenterRepositoryObsolete
- jcenter()
- mavenCentral()
- gradlePluginPortal()
- maven { url 'https://jitpack.io' }
- maven { url 'https://maven.aliyun.com/repository/releases' }
- 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' }
- }
- }
- dependencyResolutionManagement {
- repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
- repositories {
- google()
- //noinspection JcenterRepositoryObsolete
- jcenter()
- mavenCentral()
- maven {url 'https://jitpack.io'}
- maven { url 'https://maven.aliyun.com/repository/releases'}
- 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' }
- }
- }
- rootProject.name = "OASystem"
- include ':app'
- include ':MPChartLib'
- include ':Matisse-master'
|