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 @@ -17,6 +17,7 @@ version = "3"
val internalLeafProjects =
listOf(
project(":foundation-support"),
project(":foundation-store"),
project(":foundation-store-contracts"),
project(":foundation-crypto-keys"),
project(":foundation-config"),
Expand All @@ -37,6 +38,7 @@ val internalLeafMainClassDirs =
dependencies {
// implementation
implementation(project(":foundation-support"))
implementation(project(":foundation-store"))
implementation(project(":foundation-store-contracts"))
implementation(project(":foundation-crypto-keys"))
implementation(project(":foundation-config"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
network/crypta/store/StorableBlock*
network/crypta/store/BlockMetadata*
network/crypta/store/GetPubkey*
network/crypta/store/alerts/**
network/crypta/node/stats/StoreAccessStats*
network/crypta/node/stats/StatsNotAvailableException*
19 changes: 19 additions & 0 deletions foundation-store/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
plugins {
id("cryptad.java-kotlin-conventions")
id("cryptad.spotless")
`java-library`
}

version = rootProject.version

dependencies {
api(project(":foundation-support"))
api(project(":foundation-store-contracts"))
api(project(":foundation-crypto-keys"))

implementation(project(":thirdparty-onion"))
implementation(libs.slf4jApi)
implementation(files(rootProject.file("libs/wrapper.jar")))

compileOnly(libs.jetbrainsAnnotations)
}
17 changes: 17 additions & 0 deletions foundation-store/gradle/owned-output-patterns.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Aggregated main outputs that must be pruned on non-clean builds because :foundation-store owns them now.

network/crypta/store/CHKStore*
network/crypta/store/FetchOptions*
network/crypta/store/FreenetStore*
network/crypta/store/KeyCollisionException*
network/crypta/store/NullFreenetStore*
network/crypta/store/ProxyFreenetStore*
network/crypta/store/PubkeyStore*
network/crypta/store/RAMFreenetStore*
network/crypta/store/SSKStore*
network/crypta/store/SimpleGetPubkey*
network/crypta/store/SlashdotStore*
network/crypta/store/StoreCallback*
network/crypta/store/package-info*
network/crypta/store/caching/**
network/crypta/store/saltedhash/**
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ rootProject.name = "cryptad"

include(
":foundation-support",
":foundation-store",
":foundation-store-contracts",
":foundation-crypto-keys",
":foundation-config",
Expand Down
Loading