Use pgpainless hardwareDecryption branch for testing

This commit is contained in:
Tad Fisher 2022-10-08 17:18:58 -07:00
parent 98b7197aa5
commit a244a0f3b8
No known key found for this signature in database
GPG key ID: 3A7425F7E7B22251
2 changed files with 13 additions and 0 deletions

View file

@ -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

View file

@ -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")