feat: redis, fileserver, httpclient 런타임 시점 구현 추가
This commit is contained in:
@@ -0,0 +1,197 @@
|
||||
{
|
||||
"modules": [
|
||||
{
|
||||
"id": "domain-core",
|
||||
"gradle_path": ":domain-core",
|
||||
"source_path": "src/domain-core",
|
||||
"allowed_dependencies": []
|
||||
},
|
||||
{
|
||||
"id": "shared-contract",
|
||||
"gradle_path": ":shared-contract",
|
||||
"source_path": "src/shared-contract",
|
||||
"allowed_dependencies": []
|
||||
},
|
||||
{
|
||||
"id": "application-core",
|
||||
"gradle_path": ":application-core",
|
||||
"source_path": "src/application-core",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-support",
|
||||
"gradle_path": ":adapter:outbound:support",
|
||||
"source_path": "src/adapter/outbound/support",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-persistence-jpa",
|
||||
"gradle_path": ":adapter:outbound:persistence-jpa",
|
||||
"source_path": "src/adapter/outbound/persistence-jpa",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-persistence-mongo",
|
||||
"gradle_path": ":adapter:outbound:persistence-mongo",
|
||||
"source_path": "src/adapter/outbound/persistence-mongo",
|
||||
"allowed_dependencies": [
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-identifier",
|
||||
"gradle_path": ":adapter:outbound:identifier",
|
||||
"source_path": "src/adapter/outbound/identifier",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-fileserver",
|
||||
"gradle_path": ":adapter:outbound:fileserver",
|
||||
"source_path": "src/adapter/outbound/fileserver",
|
||||
"allowed_dependencies": [
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-objectstorage",
|
||||
"gradle_path": ":adapter:outbound:objectstorage",
|
||||
"source_path": "src/adapter/outbound/objectstorage",
|
||||
"allowed_dependencies": [
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-cache-redis",
|
||||
"gradle_path": ":adapter:outbound:cache-redis",
|
||||
"source_path": "src/adapter/outbound/cache-redis",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract",
|
||||
"adapter-outbound-support"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-httpclient",
|
||||
"gradle_path": ":adapter:outbound:httpclient",
|
||||
"source_path": "src/adapter/outbound/httpclient",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract",
|
||||
"adapter-outbound-support"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-messaging",
|
||||
"gradle_path": ":adapter:outbound:messaging",
|
||||
"source_path": "src/adapter/outbound/messaging",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract",
|
||||
"adapter-outbound-support"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-outbound-notification",
|
||||
"gradle_path": ":adapter:outbound:notification",
|
||||
"source_path": "src/adapter/outbound/notification",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract",
|
||||
"adapter-outbound-support"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-inbound-web",
|
||||
"gradle_path": ":adapter:inbound:web",
|
||||
"source_path": "src/adapter/inbound/web",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-inbound-grpc",
|
||||
"gradle_path": ":adapter:inbound:grpc",
|
||||
"source_path": "src/adapter/inbound/grpc",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-inbound-graphql",
|
||||
"gradle_path": ":adapter:inbound:graphql",
|
||||
"source_path": "src/adapter/inbound/graphql",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "adapter-inbound-websocket",
|
||||
"gradle_path": ":adapter:inbound:websocket",
|
||||
"source_path": "src/adapter/inbound/websocket",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "app-bootstrap",
|
||||
"gradle_path": ":app-bootstrap",
|
||||
"source_path": "src/app-bootstrap",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"adapter-outbound-persistence-jpa",
|
||||
"adapter-outbound-support",
|
||||
"adapter-outbound-messaging",
|
||||
"adapter-outbound-cache-redis",
|
||||
"adapter-outbound-notification",
|
||||
"adapter-outbound-httpclient",
|
||||
"adapter-outbound-identifier",
|
||||
"adapter-inbound-web",
|
||||
"shared-contract"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "sample-portfolio",
|
||||
"gradle_path": ":sample-portfolio",
|
||||
"source_path": "src/sample-portfolio",
|
||||
"allowed_dependencies": [
|
||||
"domain-core",
|
||||
"application-core",
|
||||
"adapter-outbound-persistence-jpa",
|
||||
"adapter-outbound-identifier",
|
||||
"adapter-outbound-objectstorage",
|
||||
"adapter-inbound-web",
|
||||
"shared-contract"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user