diff options
-rw-r--r-- | gradle.properties | 3 | ||||
-rw-r--r-- | settings.gradle.kts | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/gradle.properties b/gradle.properties index c592e29b..55f81c51 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,6 +11,9 @@ org.gradle.vfs.watch=true # Enable experimental configuration caching org.gradle.unsafe.configuration-cache=true +# FIXME Turn cache errors into warnings; can be removed when no +# longer building dependencies from source +org.gradle.unsafe.configuration-cache-problems=warn # Enable Kotlin incremental compilation kotlin.incremental=true diff --git a/settings.gradle.kts b/settings.gradle.kts index ddbbd976..f547cffb 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -165,6 +165,16 @@ dependencyResolutionManagement { gitRepositories { checkoutsDirectory.set(rootProject.projectDir.resolve("build/checkouts")) + include("pgpainless") { + uri.set("https://github.com/pgpainless/pgpainless.git") + branch.set("hardwareDecryption") + includeBuild { + dependencySubstitution { + substitute(module("org.pgpainless:pgpainless-core")) + .using(project(":pgpainless-core")) + } + } + } include("hwsecurity") { uri.set("https://github.com/tadfisher/hwsecurity.git") branch.set("pendingintent-mutability") |