mirror of
https://github.com/revanced/revanced-integrations
synced 2024-11-22 05:02:19 +01:00
build: Use Gradle build cache
This commit is contained in:
parent
dcca2e5e8d
commit
355acc7023
@ -9,6 +9,14 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
allprojects {
|
||||||
|
repositories {
|
||||||
|
google()
|
||||||
|
maven { url = uri("https://jitpack.io") }
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Tracking issue https://github.com/semantic-release/semantic-release/issues/963
|
// Tracking issue https://github.com/semantic-release/semantic-release/issues/963
|
||||||
tasks.register("publish", DefaultTask::class) {
|
tasks.register("publish", DefaultTask::class) {
|
||||||
group = "publish"
|
group = "publish"
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
dependencyResolutionManagement {
|
rootProject.name = "revanced-integrations"
|
||||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
||||||
repositories {
|
buildCache {
|
||||||
google()
|
local {
|
||||||
maven { url = uri("https://jitpack.io") }
|
isEnabled = !System.getenv().containsKey("CI")
|
||||||
mavenCentral()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
include(":app")
|
include(":app")
|
||||||
include(":dummy")
|
include(":dummy")
|
||||||
|
|
||||||
rootProject.name = "revanced-integrations"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user