mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-01-18 21:32:35 +01:00
modular-architecture.md: a quick sketch of a possible near-future modular architecture
This commit is contained in:
parent
f367ffa709
commit
6ce061c9d3
22
designdocs/modular-architecture.md
Normal file
22
designdocs/modular-architecture.md
Normal file
@ -0,0 +1,22 @@
|
||||
# A rough overview of a modular bitcoinj architecture
|
||||
|
||||
Note: this diagram somewhat blurs the distinctions between modules/JARs and packages. Some of the "modules" would remain packages in the short-run.
|
||||
Other packages that are not significant or are not changing are not shown (and are generally expected to remain in the `core` module). The difference between API and implementation dependencies is (for now) omitted.
|
||||
|
||||
````mermaid
|
||||
graph TD
|
||||
B[base] --> G[guava]
|
||||
B --> S[slf4j]
|
||||
B --> A[jcip-annotations]
|
||||
CR[crypto] --> BC[Bouncy Castle]
|
||||
CR --> B
|
||||
CO[core] --> CR
|
||||
W --> P[ProtoBuf]
|
||||
W[wallet] --> CO
|
||||
I[integration-test] --> W
|
||||
WT[wallet-tool] --> W
|
||||
FX[wallettemplate] --> W
|
||||
E[examples] --> W
|
||||
classDef external fill:#999;
|
||||
class G,S,A,BC,P external;
|
||||
````
|
Loading…
Reference in New Issue
Block a user