diff options
author | Tad Fisher <tadfisher@gmail.com> | 2022-10-08 17:18:58 -0700 |
---|---|---|
committer | Tad Fisher <tadfisher@gmail.com> | 2022-10-09 16:13:35 -0700 |
commit | a244a0f3b84d64cceaf0eefd662c78aadab2514e (patch) | |
tree | f7f4a2582272c50f981fdd6854ba6d2c916c6700 | |
parent | 98b7197aa55e14eaf48c862d990d1d7c020501dc (diff) |
Use pgpainless hardwareDecryption branch for testing
-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") |