feat(project): 初始化项目结构和配置
This commit is contained in:
Executable
+52
@@ -0,0 +1,52 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
google {
|
||||
content {
|
||||
includeGroupByRegex("com\\.android.*")
|
||||
includeGroupByRegex("com\\.google.*")
|
||||
includeGroupByRegex("androidx.*")
|
||||
}
|
||||
}
|
||||
//原仓库
|
||||
gradlePluginPortal()
|
||||
mavenCentral()
|
||||
//镜像仓库,无法连接源仓库自行启用镜像仓库,不要提交修改
|
||||
//maven { url "https://maven-central-asia.storage-download.googleapis.com/maven2/" }
|
||||
//maven { url 'https://maven.aliyun.com/repository/google' }
|
||||
//maven { url 'https://maven.aliyun.com/repository/public' }
|
||||
//maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
||||
//maven { url 'https://repo.huaweicloud.com/repository/maven/' }
|
||||
}
|
||||
}
|
||||
|
||||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
//原仓库
|
||||
google {
|
||||
content {
|
||||
includeGroupByRegex("com\\.android.*")
|
||||
includeGroupByRegex("com\\.google.*")
|
||||
includeGroupByRegex("androidx.*")
|
||||
}
|
||||
}
|
||||
maven {
|
||||
url = 'https://jitpack.io'
|
||||
content {
|
||||
includeGroupByRegex("com\\.github.*")
|
||||
}
|
||||
}
|
||||
mavenCentral()
|
||||
|
||||
//镜像仓库,无法连接源仓库自行启用镜像仓库,不要提交修改
|
||||
//maven { url "https://maven-central-asia.storage-download.googleapis.com/maven2/" }
|
||||
//maven { url 'https://maven.aliyun.com/repository/google' }
|
||||
//maven { url 'https://maven.aliyun.com/repository/public' }
|
||||
//maven { url 'https://repo.huaweicloud.com/repository/maven/' }
|
||||
}
|
||||
}
|
||||
rootProject.name = 'legado'
|
||||
|
||||
include ':app'
|
||||
include ':modules:book'
|
||||
include ':modules:rhino'
|
||||
Reference in New Issue
Block a user