Auto Release / build (app, release) (push) Canceled after 0s
Auto Release / create_release (push) Canceled after 0s
Auto Release / prepare (push) Canceled after 0s
CodeQL / Analyze (java-kotlin) (java-kotlin) (push) Canceled after 0s
Deploy Docs / build (push) Canceled after 0s
Deploy Docs / Deploy (push) Canceled after 0s
48 lines
1.4 KiB
Groovy
48 lines
1.4 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
}
|
|
}
|
|
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/public' }
|
|
maven {
|
|
url = uri("https://jitpack.io")
|
|
content {
|
|
includeGroupByRegex("com\\.github.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
}
|
|
}
|
|
rootProject.name = 'legado'
|
|
|
|
include ':app'
|
|
include ':modules:book'
|
|
include ':modules:audiobookshelf-client'
|
|
include ':modules:rhino'
|
|
include ':baselineprofile'
|
|
project(':baselineprofile').projectDir = file('baselineProfile')
|