Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ val internalLeafProjects =
listOf(
project(":foundation-support"),
project(":foundation-store-contracts"),
project(":foundation-crypto-keys"),
project(":foundation-config"),
project(":foundation-fs"),
project(":foundation-compat"),
Expand All @@ -37,6 +38,7 @@ dependencies {
// implementation
implementation(project(":foundation-support"))
implementation(project(":foundation-store-contracts"))
implementation(project(":foundation-crypto-keys"))
implementation(project(":foundation-config"))
implementation(project(":foundation-fs"))
implementation(project(":foundation-compat"))
Expand Down
17 changes: 17 additions & 0 deletions foundation-crypto-keys/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
plugins {
id("cryptad.java-kotlin-conventions")
id("cryptad.spotless")
`java-library`
}

version = rootProject.version

dependencies {
api(project(":foundation-support"))
api(project(":foundation-store-contracts"))
implementation(project(":foundation-fs"))
implementation(project(":thirdparty-legacy"))
implementation(libs.bcprov)
implementation(libs.slf4jApi)
compileOnly(libs.jetbrainsAnnotations)
}
7 changes: 7 additions & 0 deletions foundation-crypto-keys/gradle/owned-output-patterns.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Aggregated main outputs that must be pruned on non-clean builds because :foundation-crypto-keys owns them now.
# Keep this list limited to the crypto/key boundary plus the small adjacent support-io helpers moved with it.

network/crypta/crypt/**
network/crypta/keys/**
network/crypta/support/io/BucketTools*
network/crypta/support/io/PrependLengthOutputStream*
Loading
Loading