mirror of
https://github.com/quillpad/quillpad.git
synced 2025-12-28 05:13:46 +00:00
21 lines
353 B
Groovy
21 lines
353 B
Groovy
// Apply the Gradle version catalog
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven {
|
|
url = "https://www.jitpack.io"
|
|
}
|
|
}
|
|
}
|
|
|
|
include ':app'
|
|
rootProject.name = "quillpad"
|
|
|
|
buildCache {
|
|
local {
|
|
directory = new File(rootDir, 'build-cache')
|
|
}
|
|
}
|