feat: grpc 기능 deep 구현

This commit is contained in:
DongHyeonka
2026-08-31 07:28:39 +09:00
parent a24ece9cf7
commit 21234e38cd
400 changed files with 40217 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
apply plugin: 'java-library'
// Schema source of truth: the `.proto` files plus the rule engine that judges them.
//
// No protobuf plugin and no protoc invocation here — see
// docs/superpowers/specs/2026-08-30-grpc-platform-adaptation-design.md D6. The validator reads
// `.proto` text and enforces the Stable style manifest (proto3 + explicit optional, package
// versioning, reserved history, enum zero suffix, WKT allowlist), which is the invariant the plan
// owns; running protoc is a separate, gated decision.
dependencies {
api project(':grpc:grpc-core-api')
}