settings.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. pluginManagement {
  2. repositories {
  3. google()
  4. //noinspection JcenterRepositoryObsolete
  5. jcenter()
  6. mavenCentral()
  7. gradlePluginPortal()
  8. maven { url 'https://jitpack.io' }
  9. maven { url 'https://maven.aliyun.com/repository/releases' }
  10. maven { url 'https://maven.aliyun.com/repository/google' }
  11. maven { url 'https://maven.aliyun.com/repository/central' }
  12. maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
  13. maven { url 'https://maven.aliyun.com/repository/public' }
  14. }
  15. }
  16. dependencyResolutionManagement {
  17. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  18. repositories {
  19. google()
  20. //noinspection JcenterRepositoryObsolete
  21. jcenter()
  22. mavenCentral()
  23. maven {url 'https://jitpack.io'}
  24. maven { url 'https://maven.aliyun.com/repository/releases'}
  25. maven { url 'https://maven.aliyun.com/repository/google' }
  26. maven { url 'https://maven.aliyun.com/repository/central' }
  27. maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
  28. maven { url 'https://maven.aliyun.com/repository/public' }
  29. }
  30. }
  31. rootProject.name = "OASystem"
  32. include ':app'
  33. include ':MPChartLib'
  34. include ':Matisse-master'